/* ========================================
   WILLS CREDIT CONSULTANT - APPLE GLASS DESIGN
   ======================================== */

/* --- CSS Variables --- */
:root {
  --purple-900: #1a0a2e;
  --purple-800: #2d1854;
  --purple-700: #3f2471;
  --purple-600: #5a3e8a;
  --purple-500: #6b4f9e;
  --purple-400: #8b6fb5;
  --purple-300: #b49ed4;
  --gold-500: #d4a843;
  --gold-400: #e8c468;
  --gold-300: #f0d88a;
  --gold-200: #f7e9b5;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --shadow-gold: 0 4px 14px rgba(212, 168, 67, 0.3);

  /* Glass variables */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-bg-light: rgba(255, 255, 255, 0.65);
  --glass-bg-medium: rgba(255, 255, 255, 0.45);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-border-light: rgba(255, 255, 255, 0.35);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --glass-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
  --glass-blur: blur(20px);
  --glass-blur-heavy: blur(40px);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

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

.text-gold {
  color: var(--gold-500);
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold-500);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--purple-900);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--purple-900);
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.45), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
  background: rgba(232, 196, 104, 0.08);
}

.btn-nav {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--purple-900);
  padding: 10px 24px;
  font-size: 0.875rem;
  box-shadow: 0 2px 10px rgba(212, 168, 67, 0.25);
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 168, 67, 0.35);
}

.btn-full {
  width: 100%;
}

/* ========================================
   NAVIGATION - FROSTED GLASS
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 10, 46, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--purple-900);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 2px 8px rgba(212, 168, 67, 0.3), inset 0 1px 0 rgba(255,255,255,0.3);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}

.nav-links a:not(.btn):hover {
  color: var(--gold-400);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-400);
  transition: var(--transition);
  border-radius: 1px;
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-800) 40%, var(--purple-700) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 168, 67, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(139, 111, 181, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(212, 168, 67, 0.06) 0%, transparent 40%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Animated gradient orbs - Apple style */
.hero-bg::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08), transparent 70%);
  top: -200px;
  right: -100px;
  animation: orbFloat 20s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, 30px) scale(1.1); }
  66% { transform: translate(30px, -20px) scale(0.95); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
}

.hero-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--gold-400);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
}

/* Glass Stats Bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}

.stat {
  text-align: center;
  flex: 1;
  padding: 0 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-400);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent);
}

/* Hero Glass Card */
.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: saturate(150%) blur(24px);
  -webkit-backdrop-filter: saturate(150%) blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  position: relative;
  animation: float 6s ease-in-out infinite;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -1px 0 rgba(0,0,0,0.1);
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.score-display {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
}

.score-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.score-ring-bg {
  fill: none;
  stroke: rgba(255,255,255,0.08);
  stroke-width: 8;
}

.score-ring-fill {
  fill: none;
  stroke: var(--gold-400);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 534;
  stroke-dashoffset: 134;
  transition: stroke-dashoffset 2s ease;
  filter: drop-shadow(0 0 8px rgba(232, 196, 104, 0.4));
}

.score-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.score-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}

.score-label {
  font-size: 0.85rem;
  color: var(--gold-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.score-caption {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.3; height: 24px; }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

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

.about-image-col {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(26, 10, 46, 0.2),
    0 0 0 1px rgba(0,0,0,0.05);
}

.about-image {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center top;
}

.about-image-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(26, 10, 46, 0.4));
}

/* Glass badge */
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  color: var(--purple-900);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 0 0 1px rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.6);
}

.badge-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
  background: linear-gradient(135deg, var(--purple-900), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-600);
}

.about-lead {
  font-size: 1.15rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 500;
}

.about-body {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Glass feature items */
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(249, 250, 251, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}

.about-feature:hover {
  background: rgba(232, 196, 104, 0.06);
  border-color: rgba(212, 168, 67, 0.15);
  transform: translateX(4px);
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.15), rgba(212, 168, 67, 0.05));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
}

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

.about-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--purple-900);
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ========================================
   SERVICES SECTION - GLASS CARDS
   ======================================== */
.services {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, #f0eff5 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative gradient orbs behind service cards */
.services::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 79, 158, 0.08), transparent 70%);
  top: 10%;
  left: -100px;
}

.services::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06), transparent 70%);
  bottom: -10%;
  right: -100px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* Glass service cards */
.service-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255,255,255,0.8);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-600), var(--gold-500));
  opacity: 0;
  transition: var(--transition);
}

/* Glass highlight on top-left corner */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
  pointer-events: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255,255,255,0.8);
  border-color: rgba(255, 255, 255, 0.9);
}

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

/* Featured card - Dark glass */
.service-card.featured {
  background: rgba(26, 10, 46, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(26, 10, 46, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

.service-card.featured::before {
  opacity: 1;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
}

.service-card.featured::after {
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 100%);
}

.service-card.featured:hover {
  box-shadow: 0 20px 48px rgba(26, 10, 46, 0.4), inset 0 1px 0 rgba(255,255,255,0.12);
  border-color: rgba(255, 255, 255, 0.15);
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--purple-900);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(212, 168, 67, 0.3);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.12), rgba(107, 79, 158, 0.08));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold-500);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(212, 168, 67, 0.1);
}

.featured .service-icon {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.1);
  color: var(--gold-400);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--purple-900);
  position: relative;
  z-index: 1;
}

.featured h3 {
  color: var(--white);
}

.service-card p {
  font-size: 0.925rem;
  color: var(--gray-500);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.featured p {
  color: rgba(255,255,255,0.65);
}

/* ========================================
   PROCESS SECTION - GLASS STEPS
   ======================================== */
.process {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.process-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
  position: relative;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.process-step:hover {
  background: rgba(249, 250, 251, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px var(--gold-400);
  margin-bottom: 20px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(212, 168, 67, 0.15));
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--purple-900);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.process-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-300), var(--purple-300));
  margin-top: 52px;
  opacity: 0.5;
}

/* ========================================
   TESTIMONIALS SECTION - DARK GLASS
   ======================================== */
.testimonials {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--purple-900) 0%, #1e0e3a 50%, var(--purple-800) 100%);
  position: relative;
  overflow: hidden;
}

/* Ambient light orbs */
.testimonials::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06), transparent 60%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonials::after {
  content: '';
  position: absolute;
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(107, 79, 158, 0.1), transparent 60%);
  bottom: -200px;
  left: 20%;
}

.testimonials .section-tag { color: var(--gold-400); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-subtitle { color: rgba(255,255,255,0.55); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* Glass testimonial cards */
.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: saturate(150%) blur(20px);
  -webkit-backdrop-filter: saturate(150%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255,255,255,0.06);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent);
  pointer-events: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}

.testimonial-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.score-before, .score-after {
  text-align: center;
}

.score-before .label, .score-after .label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.score-before .label {
  color: rgba(255,255,255,0.35);
}

.score-after .label {
  color: var(--gold-400);
}

.score-before .score {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
}

.score-after .score {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-400);
  text-shadow: 0 0 20px rgba(232, 196, 104, 0.2);
}

.score-arrow {
  color: var(--gold-400);
}

.score-arrow svg {
  width: 24px;
  height: 24px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--purple-900);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(212, 168, 67, 0.25);
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ========================================
   CONTACT SECTION - GLASS FORM
   ======================================== */
.contact {
  padding: 120px 0;
  background: linear-gradient(180deg, #f0eff5 0%, var(--gray-50) 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 79, 158, 0.06), transparent 60%);
  top: -200px;
  right: -200px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info .section-title {
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Glass contact items */
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.12), rgba(107, 79, 158, 0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--purple-900);
}

.contact-item span {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Glass Contact Form */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255,255,255,0.6),
    inset 0 1px 0 rgba(255,255,255,0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  pointer-events: none;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--purple-900);
  margin-bottom: 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

/* Glass form inputs */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.925rem;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gray-800);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-400);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(107, 79, 158, 0.08), 0 2px 8px rgba(0,0,0,0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form .btn {
  margin-top: 8px;
  padding: 16px;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

/* ========================================
   FOOTER - FROSTED
   ======================================== */
.footer {
  background: linear-gradient(180deg, var(--purple-900), #0f0620);
  padding: 80px 0 32px;
  color: rgba(255,255,255,0.6);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.2), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.45);
}

/* Glass social links */
.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.social-links a:hover {
  background: rgba(232, 196, 104, 0.15);
  border-color: rgba(232, 196, 104, 0.3);
  color: var(--gold-400);
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-links h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

.footer-links a:hover {
  color: var(--gold-400);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 32px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  background: rgba(26, 10, 46, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  color: var(--gold-400);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: rgba(26, 10, 46, 0.9);
  border-color: rgba(232, 196, 104, 0.35);
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.2), inset 0 1px 0 rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.scroll-top:active {
  transform: translateY(0) scale(0.95);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
}

/* ========================================
   LOADING SCREEN
   ======================================== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--purple-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--purple-900);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  margin: 0 auto 24px;
  animation: loaderPulse 1.5s ease-in-out infinite;
  box-shadow: 0 4px 24px rgba(212, 168, 67, 0.4);
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 24px rgba(212, 168, 67, 0.4); }
  50% { transform: scale(1.08); box-shadow: 0 8px 40px rgba(212, 168, 67, 0.6); }
}

.loader-bar {
  width: 160px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin: 0 auto 16px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  border-radius: 3px;
  animation: loaderFill 1.8s ease-in-out forwards;
}

@keyframes loaderFill {
  0% { width: 0; }
  100% { width: 100%; }
}

.loader-text {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--font-body);
}

/* ========================================
   DARK MODE TOGGLE
   ======================================== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dark-toggle {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  position: relative;
}

.dark-toggle:hover {
  background: rgba(255,255,255,0.12);
  color: var(--gold-400);
}

.dark-toggle svg {
  width: 18px;
  height: 18px;
  position: absolute;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dark-toggle .icon-moon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

.dark-toggle .icon-sun {
  opacity: 1;
  transform: rotate(0) scale(1);
}

/* Dark mode active */
[data-theme="dark"] .dark-toggle .icon-sun {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

[data-theme="dark"] .dark-toggle .icon-moon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

[data-theme="dark"] body {
  background: #0a0a14;
  color: rgba(255,255,255,0.85);
}

[data-theme="dark"] .about,
[data-theme="dark"] .process,
[data-theme="dark"] .faq {
  background: #0f0f1a;
}

[data-theme="dark"] .services,
[data-theme="dark"] .contact {
  background: linear-gradient(180deg, #0a0a14, #12121f);
}

[data-theme="dark"] .section-title {
  color: var(--white);
}

[data-theme="dark"] .section-subtitle,
[data-theme="dark"] .about-body,
[data-theme="dark"] .contact-info > p {
  color: rgba(255,255,255,0.5);
}

[data-theme="dark"] .about-lead {
  color: rgba(255,255,255,0.7);
}

[data-theme="dark"] .about::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
}

[data-theme="dark"] .service-card:not(.featured) {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

[data-theme="dark"] .service-card:not(.featured) h3 {
  color: var(--white);
}

[data-theme="dark"] .service-card:not(.featured) p {
  color: rgba(255,255,255,0.5);
}

[data-theme="dark"] .service-card:not(.featured)::after {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
}

[data-theme="dark"] .service-card:not(.featured):hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}

[data-theme="dark"] .process-step:hover {
  background: rgba(255,255,255,0.04);
}

[data-theme="dark"] .process-step h3 {
  color: var(--white);
}

[data-theme="dark"] .process-step p {
  color: rgba(255,255,255,0.5);
}

[data-theme="dark"] .about-feature {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.06);
}

[data-theme="dark"] .about-feature h4 {
  color: var(--white);
}

[data-theme="dark"] .about-feature p {
  color: rgba(255,255,255,0.5);
}

[data-theme="dark"] .about-badge {
  background: rgba(15,15,26,0.9);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

[data-theme="dark"] .badge-text {
  color: rgba(255,255,255,0.5);
}

[data-theme="dark"] .contact-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.06);
}

[data-theme="dark"] .contact-item strong {
  color: var(--white);
}

[data-theme="dark"] .contact-item span {
  color: rgba(255,255,255,0.5);
}

[data-theme="dark"] .contact-form-wrapper {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

[data-theme="dark"] .contact-form-wrapper::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
}

[data-theme="dark"] .contact-form h3 {
  color: var(--white);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
  color: var(--white);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus {
  border-color: var(--gold-500);
  background: rgba(255,255,255,0.1);
}

[data-theme="dark"] .faq-question {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.06);
  color: var(--white);
}

[data-theme="dark"] .faq-question:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}

[data-theme="dark"] .faq-question[aria-expanded="true"] {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}

[data-theme="dark"] .faq-answer p {
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.06);
}

[data-theme="dark"] .marquee-section {
  background: linear-gradient(135deg, #0a0a14, #12121f);
  border-color: rgba(212, 168, 67, 0.1);
}

[data-theme="dark"] .video-placeholder {
  background: #12121f;
}

/* ========================================
   ACHIEVEMENT MARQUEE
   ======================================== */
.marquee-section {
  padding: 16px 0;
  background: linear-gradient(135deg, var(--purple-900), var(--purple-800));
  overflow: hidden;
  border-top: 1px solid rgba(212, 168, 67, 0.15);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
}

.marquee-track {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-item {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.marquee-item strong {
  color: var(--gold-400);
  font-weight: 700;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  background: var(--gold-500);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.5;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   VIDEO SECTION
   ======================================== */
.video-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

[data-theme="dark"] .video-section {
  background: linear-gradient(180deg, #0f0f1a, #0a0a14);
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.video-placeholder {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-900), var(--purple-700));
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(26, 10, 46, 0.3);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(212, 168, 67, 0.1), transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(139, 111, 181, 0.15), transparent 50%);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.video-play-btn svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.video-placeholder:hover .video-play-btn {
  background: rgba(212, 168, 67, 0.9);
  border-color: var(--gold-400);
  color: var(--purple-900);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 40px rgba(212, 168, 67, 0.4);
}

.video-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.video-duration {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.video-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ========================================
   BEFORE/AFTER SLIDER
   ======================================== */
.before-after {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--purple-900), #1e0e3a, var(--purple-800));
  position: relative;
  overflow: hidden;
}

.before-after .section-tag { color: var(--gold-400); }
.before-after .section-title { color: var(--white); }
.before-after .section-subtitle { color: rgba(255,255,255,0.55); }

.ba-slider-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.ba-slider {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  user-select: none;
  touch-action: none;
}

.ba-side {
  padding: 40px 32px;
}

.ba-before {
  background: rgba(220, 50, 50, 0.08);
  border-right: none;
}

.ba-after {
  background: rgba(50, 200, 100, 0.08);
}

.ba-card {
  text-align: center;
}

.ba-score-circle {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.ba-score-circle.bad {
  background: rgba(239, 68, 68, 0.15);
  border: 3px solid rgba(239, 68, 68, 0.4);
}

.ba-score-circle.good {
  background: rgba(34, 197, 94, 0.15);
  border: 3px solid rgba(34, 197, 94, 0.4);
}

.ba-score-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.ba-score-circle.bad .ba-score-num { color: #ef4444; }
.ba-score-circle.good .ba-score-num { color: #22c55e; }

.ba-score-rating {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.ba-score-circle.bad .ba-score-rating { color: rgba(239, 68, 68, 0.7); }
.ba-score-circle.good .ba-score-rating { color: rgba(34, 197, 94, 0.7); }

.ba-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.ba-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.ba-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.ba-item.bad svg { color: #ef4444; }
.ba-item.good svg { color: #22c55e; }

.ba-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.3);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: ew-resize;
}

.ba-handle-line {
  flex: 1;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold-400), transparent);
}

.ba-handle-circle {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-900);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.ba-handle-circle:hover {
  transform: scale(1.15);
}

.ba-handle-circle svg {
  width: 20px;
  height: 20px;
}

/* ========================================
   REVIEWS SUMMARY & STARS
   ======================================== */
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  color: #fbbf24;
}

.review-source {
  display: block;
  margin-top: 16px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.reviews-summary {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.reviews-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  padding: 12px 28px;
}

.google-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.reviews-badge strong {
  color: var(--white);
  font-size: 1.1rem;
  font-family: var(--font-display);
}

.reviews-badge span {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq {
  padding: 120px 0;
  background: var(--white);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--gray-50);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--purple-900);
  text-align: left;
  transition: var(--transition);
  gap: 16px;
}

.faq-question:hover {
  background: rgba(232, 196, 104, 0.06);
  border-color: rgba(212, 168, 67, 0.15);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold-500);
  transition: transform 0.3s ease;
}

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

.faq-question[aria-expanded="true"] {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: rgba(232, 196, 104, 0.08);
  border-color: rgba(212, 168, 67, 0.15);
}

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

.faq-answer p {
  padding: 20px 24px;
  font-size: 0.925rem;
  line-height: 1.8;
  color: var(--gray-500);
  background: var(--gray-50);
  border: 1px solid rgba(0,0,0,0.04);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* ========================================
   FLOATING ACTION BUTTONS
   ======================================== */
.floating-btns {
  position: fixed;
  bottom: 100px;
  right: 32px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.floating-btns.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
  position: relative;
}

.fab svg {
  width: 22px;
  height: 22px;
}

.fab-call {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--purple-900);
}

.fab-whatsapp {
  background: #25d366;
  color: white;
}

.fab:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

.fab-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  background: rgba(26, 10, 46, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.fab:hover .fab-tooltip {
  opacity: 1;
}

/* ========================================
   MOBILE STICKY CTA BAR
   ======================================== */
.mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 997;
    background: rgba(26, 10, 46, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 10px 12px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  }

  .mobile-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-cta-call,
  .mobile-cta-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
  }

  .mobile-cta-call svg,
  .mobile-cta-wa svg {
    width: 16px;
    height: 16px;
  }

  .mobile-cta-wa {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.3);
  }

  .mobile-cta-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--purple-900);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 12px rgba(212, 168, 67, 0.3);
    white-space: nowrap;
  }

  /* Hide desktop floating buttons on mobile */
  .floating-btns {
    display: none !important;
  }

  /* Adjust scroll-top position above mobile CTA bar */
  .scroll-top {
    bottom: 90px;
    right: 16px;
    width: 42px;
    height: 42px;
  }

  /* Add bottom padding to footer for sticky bar */
  .footer {
    padding-bottom: 80px;
  }

  /* Video section mobile */
  .video-section {
    padding: 80px 0;
  }

  .video-play-btn {
    width: 60px;
    height: 60px;
  }

  .video-play-btn svg {
    width: 24px;
    height: 24px;
  }

  .video-info {
    bottom: 16px;
    left: 16px;
  }

  /* Before/After mobile */
  .before-after {
    padding: 80px 0;
  }

  .ba-slider {
    grid-template-columns: 1fr;
  }

  .ba-before {
    border-right: none;
    border-bottom: none;
  }

  .ba-side {
    padding: 28px 24px;
  }

  .ba-handle {
    top: auto;
    bottom: auto;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 4px;
    flex-direction: row;
  }

  .ba-handle-line {
    height: 3px;
    width: auto;
    flex: 1;
    background: linear-gradient(to right, transparent, var(--gold-400), transparent);
  }

  .ba-handle-circle {
    width: 40px;
    height: 40px;
  }

  .ba-handle-circle svg {
    width: 16px;
    height: 16px;
    transform: rotate(90deg);
  }

  .ba-score-circle {
    width: 100px;
    height: 100px;
  }

  .ba-score-num {
    font-size: 1.8rem;
  }

  /* FAQ mobile */
  .faq {
    padding: 80px 0;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.9rem;
  }

  .faq-answer p {
    padding: 16px 18px;
    font-size: 0.875rem;
  }
}

@media (max-width: 380px) {
  .ba-side {
    padding: 24px 16px;
  }

  .ba-item {
    font-size: 0.78rem;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-description {
    margin: 0 auto 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-image-wrapper {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image {
    height: 400px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Adjust scroll-to-top for mobile - above sticky CTA bar */
  .scroll-top {
    bottom: 90px;
    right: 16px;
    width: 42px;
    height: 42px;
  }

  /* Glass mobile nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: rgba(26, 10, 46, 0.95);
    backdrop-filter: saturate(180%) blur(30px);
    -webkit-backdrop-filter: saturate(180%) blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 48px 32px;
    transition: var(--transition);
    box-shadow: -20px 0 60px rgba(0,0,0,0.4);
    border-left: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.05rem !important;
    padding: 8px 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .logo-text {
    font-size: 0.95rem;
  }

  /* Hero mobile */
  .hero-content {
    padding: 100px 20px 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 0.7rem;
    letter-spacing: 3px;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0;
    padding: 16px;
    max-width: 100%;
  }

  .stat {
    padding: 10px 16px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-plus {
    font-size: 1.2rem;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  }

  .hero-scroll {
    display: none;
  }

  /* About mobile */
  .about {
    padding: 80px 0;
  }

  .about-image {
    height: 320px;
  }

  .about-image-col {
    margin-bottom: 16px;
  }

  .about-badge {
    right: 16px;
    bottom: -16px;
    padding: 14px 18px;
  }

  .badge-number {
    font-size: 1.6rem;
  }

  .section-tag {
    font-size: 0.7rem;
    letter-spacing: 3px;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .about-lead {
    font-size: 1rem;
  }

  .about-features {
    margin-top: 24px;
  }

  .about-feature {
    padding: 14px;
  }

  /* Services mobile */
  .services {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.875rem;
  }

  /* Process mobile */
  .process {
    padding: 80px 0;
  }

  .process-grid {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }

  .process-step {
    text-align: left;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
  }

  .step-number {
    font-size: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
    width: 50px;
  }

  .process-step h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  .process-step p {
    font-size: 0.85rem;
  }

  .process-connector {
    width: 2px;
    height: 20px;
    margin: 0 0 0 43px;
  }

  /* Testimonials mobile */
  .testimonials {
    padding: 80px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-score {
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .score-before .score,
  .score-after .score {
    font-size: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.875rem;
    margin-bottom: 16px;
  }

  /* Contact mobile */
  .contact {
    padding: 80px 0;
  }

  .contact-info > p {
    font-size: 0.925rem;
    margin-bottom: 28px;
  }

  .contact-item {
    padding: 14px 16px;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
  }

  .contact-form-wrapper {
    padding: 28px 20px;
  }

  .contact-form h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 16px;
    font-size: 16px; /* prevents iOS zoom on focus */
  }

  /* Footer mobile */
  .footer {
    padding: 60px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand .logo-text {
    font-size: 1rem;
  }

  .footer-links h4 {
    font-size: 0.8rem;
    margin-bottom: 14px;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    padding-top: 24px;
  }
}

/* Extra small devices */
@media (max-width: 380px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-content {
    padding: 90px 16px 50px;
  }

  .section-title {
    font-size: 1.45rem;
  }

  .about-image {
    height: 260px;
  }

  .contact-form-wrapper {
    padding: 24px 16px;
  }

  .testimonial-score {
    flex-direction: column;
    gap: 8px;
  }

  .score-arrow {
    transform: rotate(90deg);
  }
}
