/* =====================================================
   PURE CLEANERS MD — World-Class Design System
   ===================================================== */

/* ── 1. IMPORTS ───────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Syne:wght@700;800&display=swap');

/* ── 2. CSS DESIGN TOKENS ─────────────────────────── */
:root {
  /* Brand Colors */
  --primary:        #2563EB;
  --primary-light:  #3B82F6;
  --primary-dark:   #1D4ED8;
  --secondary:      #0EA5E9;
  --accent:         #F59E0B;
  --accent-dark:    #D97706;
  --success:        #10B981;
  --danger:         #EF4444;

  /* Dark Palette */
  --dark:           #060D1A;
  --dark-2:         #0A1628;
  --dark-3:         #0F2044;
  --dark-4:         #1E3A5F;

  /* Neutral Palette */
  --gray-50:        #F8FAFC;
  --gray-100:       #F1F5F9;
  --gray-200:       #E2E8F0;
  --gray-300:       #CBD5E1;
  --gray-400:       #94A3B8;
  --gray-500:       #64748B;
  --gray-600:       #475569;
  --text:           #0F172A;
  --text-light:     #475569;
  --white:          #FFFFFF;

  /* Gradients */
  --grad-primary:   linear-gradient(135deg, #2563EB 0%, #0EA5E9 100%);
  --grad-hero:      radial-gradient(ellipse at 60% 40%, #1E40AF 0%, #060D1A 65%);
  --grad-dark:      linear-gradient(135deg, #060D1A 0%, #0F2044 100%);
  --grad-cta:       linear-gradient(135deg, #1D4ED8 0%, #0EA5E9 50%, #10B981 100%);
  --grad-gold:      linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  --grad-card:      linear-gradient(145deg, rgba(37,99,235,0.08) 0%, rgba(14,165,233,0.05) 100%);

  /* Shadows */
  --shadow-sm:      0 1px 4px rgba(0,0,0,0.10);
  --shadow:         0 4px 20px rgba(0,0,0,0.12);
  --shadow-md:      0 8px 40px rgba(0,0,0,0.16);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.22);
  --shadow-blue:    0 8px 40px rgba(37,99,235,0.35);
  --shadow-glow:    0 0 40px rgba(37,99,235,0.25), 0 0 80px rgba(14,165,233,0.15);

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  /* Borders */
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* Typography */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Syne', 'Inter', sans-serif;

  /* Transitions */
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max: 1280px;
  --container-sm:  860px;
  --nav-height:    72px;
}

/* ── 3. BASE RESET ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }
::selection { background: rgba(37,99,235,0.2); color: var(--primary-dark); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ── 4. TYPOGRAPHY ───────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; }
h5 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }
.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-white { color: var(--white) !important; }
.text-white p, .text-white h1, .text-white h2, .text-white h3 { color: var(--white); }
.text-center { text-align: center; }
.text-muted { color: var(--gray-400) !important; }
.font-bold { font-weight: 700; }
.lead { font-size: 1.2rem; font-weight: 400; line-height: 1.7; }

/* ── 5. LAYOUT UTILITIES ─────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-sm { max-width: var(--container-sm); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: var(--space-3xl) 0; }
.section-sm { padding: var(--space-2xl) 0; }
.section-header { text-align: center; margin-bottom: var(--space-2xl); }
.section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37,99,235,0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid rgba(37,99,235,0.15);
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p.subtitle { font-size: 1.15rem; max-width: 620px; margin: 0 auto; color: var(--text-light); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-lg); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ── 6. ANNOUNCEMENT BAR ─────────────────────────── */
.announcement-bar {
  background: var(--grad-primary);
  color: var(--white);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  position: relative;
  z-index: 1001;
  letter-spacing: 0.01em;
}
.announcement-bar a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.announcement-bar .bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.announcement-bar .bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.announcement-bar .sep { opacity: 0.5; }

/* ── 7. NAVIGATION ───────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 13, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: var(--nav-height);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(6, 13, 26, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar .nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--grad-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-blue);
}
.nav-logo-text { line-height: 1.1; }
.nav-logo-text .name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo-text .tagline {
  font-size: 0.65rem;
  color: var(--secondary);
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}
.nav-link {
  color: rgba(255,255,255,0.80);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-link .chevron {
  font-size: 0.65rem;
  transition: var(--transition);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown:hover .chevron { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  min-width: 700px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}
.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
}
.dropdown-section-title {
  grid-column: 1/-1;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  padding: 0.5rem 0.75rem 0.25rem;
  margin-top: 0.5rem;
}
.dropdown-section-title:first-child { margin-top: 0; }
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}
.dropdown-link:hover {
  background: rgba(37,99,235,0.2);
  color: var(--white);
}
.dropdown-link i { color: var(--secondary); font-size: 0.8rem; width: 16px; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
}
.nav-phone i { color: var(--accent); }
.nav-cta {
  background: var(--grad-primary);
  color: var(--white);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-blue);
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,99,235,0.5); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(400px, 100%);
  height: 100vh;
  background: var(--dark-2);
  z-index: 999;
  padding: 2rem;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.open { right: 0; }
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.mobile-menu-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.15); }
.mobile-nav-link {
  display: block;
  color: rgba(255,255,255,0.80);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--white); padding-left: 0.5rem; }
.mobile-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 1.5rem 0 0.5rem;
}
.mobile-cta-group { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }

/* ── 8. BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: var(--transition-bounce);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn-primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--shadow-blue);
  border: none;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(37,99,235,0.5); }
.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }
.btn-accent {
  background: var(--grad-gold);
  color: var(--dark);
  box-shadow: 0 8px 30px rgba(245,158,11,0.4);
}
.btn-accent:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(245,158,11,0.5); }
.btn-dark {
  background: var(--dark-2);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-dark:hover { background: var(--dark-4); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.82rem; }
.btn-xl { padding: 1.15rem 2.75rem; font-size: 1.15rem; }
.btn-icon { width: 48px; height: 48px; padding: 0; border-radius: var(--radius-full); }
.btn-icon-sm { width: 36px; height: 36px; padding: 0; border-radius: var(--radius-full); }
.btn-full { width: 100%; }
.btn-group { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ── 9. HERO SECTIONS ────────────────────────────── */
.hero-home {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(14,165,233,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(37,99,235,0.15) 0%, transparent 50%);
}
.hero-home::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--white));
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: 0;
}
.hero-content-wrap {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-height) + 2rem) 0 6rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  animation: fadeInDown 0.8s ease both;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-title .highlight {
  background: linear-gradient(135deg, #60A5FA 0%, #22D3EE 50%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.70);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}
.hero-stat .num .plus { color: var(--accent); }
.hero-stat .label { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 0.25rem; font-weight: 500; }
.hero-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-float {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 2rem;
  animation: float 6s ease-in-out infinite;
  max-width: 340px;
}
.hero-card-float .card-icon {
  width: 64px;
  height: 64px;
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-blue);
}
.hero-card-float h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.2rem; }
.hero-card-float p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 1.25rem; }

/* Page Hero Banner (for inner pages) */
.page-hero {
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 3rem) 0 4rem;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(37,99,235,0.2) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.50);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.60); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { font-size: 0.7rem; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .subtitle { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 560px; }
.page-hero-decoration {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  opacity: 0.05;
  pointer-events: none;
}

/* ── 10. CARDS ───────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
}
.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-card);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-card-icon {
  background: var(--grad-primary);
  transform: scale(1.1) rotate(-5deg);
}
.service-card:hover .service-card-icon i { color: var(--white); }
.service-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(37,99,235,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition-bounce);
}
.service-card-icon i { font-size: 1.5rem; color: var(--primary); transition: var(--transition); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--text); position: relative; }
.service-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.25rem; position: relative; }
.service-card .card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
  position: relative;
}
.service-card:hover .card-link { gap: 0.7rem; }

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  transition: var(--transition);
}
.feature-card:hover { border-color: rgba(37,99,235,0.3); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.feature-icon.gold { background: var(--grad-gold); box-shadow: 0 8px 24px rgba(245,158,11,0.3); }
.feature-icon.green { background: linear-gradient(135deg, #10B981 0%, #34D399 100%); box-shadow: 0 8px 24px rgba(16,185,129,0.3); }
.feature-icon.purple { background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%); box-shadow: 0 8px 24px rgba(139,92,246,0.3); }
.feature-text h4 { color: var(--text); margin-bottom: 0.4rem; font-size: 1rem; }
.feature-text p { font-size: 0.875rem; color: var(--text-light); margin: 0; }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(37,99,235,0.2); box-shadow: var(--shadow-md); }
.testimonial-card .quote-mark {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.08;
  font-family: Georgia, serif;
  font-weight: 700;
}
.testimonial-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 0.05em; }
.testimonial-text { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.testimonial-location { font-size: 0.8rem; color: var(--gray-500); }

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-bounce);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-card-img {
  height: 200px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.2));
}
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  display: inline-block;
  background: rgba(37,99,235,0.08);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text); transition: var(--transition); }
.blog-card:hover h3 { color: var(--primary); }
.blog-card p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 1rem; }
.blog-card-meta { font-size: 0.8rem; color: var(--gray-400); display: flex; align-items: center; gap: 1rem; }

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-blue);
  transform: scale(1.03);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--grad-primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-8px); }
.pricing-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.pricing-name { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.pricing-price { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--primary); margin-bottom: 0.25rem; }
.pricing-period { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 1.5rem; }
.pricing-features { text-align: left; margin-bottom: 2rem; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.pricing-feature:last-child { border-bottom: none; }
.pricing-feature i { color: var(--success); font-size: 0.85rem; }

/* ── 11. STATS SECTION ───────────────────────────── */
.stats-section {
  background: var(--grad-primary);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
.stat-item { text-align: center; padding: 1.5rem; }
.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}
.stat-item .stat-num .stat-suffix { font-size: 60%; color: rgba(255,255,255,0.8); }
.stat-item .stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.75); font-weight: 500; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.15); }

/* ── 12. TRUST BADGES ────────────────────────────── */
.trust-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 0;
}
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.trust-badge i { color: var(--primary); font-size: 1rem; }
.trust-badge.accent i { color: var(--accent); }
.trust-badge.green i { color: var(--success); }
.trust-section {
  background: var(--dark-2);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}
.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  background: rgba(255,255,255,0.03);
}
.trust-card:hover {
  border-color: rgba(37,99,235,0.4);
  background: rgba(37,99,235,0.08);
  transform: translateY(-4px);
}
.trust-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(37,99,235,0.15);
  border: 2px solid rgba(37,99,235,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--secondary);
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}
.trust-card:hover .trust-card-icon { background: var(--grad-primary); border-color: transparent; color: var(--white); }
.trust-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.5rem; }
.trust-card p { color: rgba(255,255,255,0.55); font-size: 0.875rem; margin: 0; }

/* ── 13. CHECKLIST ───────────────────────────────── */
.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.5rem;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  font-size: 0.9rem;
  color: var(--text-light);
}
.checklist-item:hover { background: rgba(37,99,235,0.05); border-color: rgba(37,99,235,0.2); }
.checklist-item .check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.65rem;
  margin-top: 0.1rem;
}
.check-section {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
}
.check-section-header {
  background: var(--grad-primary);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}
.check-section-header i { font-size: 1.2rem; }
.check-section-header h4 { color: var(--white); font-size: 1rem; }
.check-section-body {
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.5rem;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-light);
  padding: 0.35rem 0;
}
.check-item i { color: var(--success); margin-top: 0.15rem; font-size: 0.8rem; flex-shrink: 0; }

/* ── 14. FAQ ACCORDION ───────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--primary); box-shadow: 0 4px 20px rgba(37,99,235,0.1); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
  font-weight: 600;
  color: var(--text);
  font-size: 0.975rem;
}
.faq-question:hover { background: var(--gray-50); }
.faq-item.open .faq-question { background: rgba(37,99,235,0.04); color: var(--primary); }
.faq-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-light);
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--white);
}
.faq-answer.open { max-height: 400px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── 15. CONTACT FORMS ───────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.825rem 1.1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  font-family: var(--font-body);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-400); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { cursor: pointer; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form-card-dark {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.form-card-dark .form-label { color: rgba(255,255,255,0.85); }
.form-card-dark .form-input,
.form-card-dark .form-select,
.form-card-dark .form-textarea {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: var(--white);
}
.form-card-dark .form-input:focus,
.form-card-dark .form-select:focus,
.form-card-dark .form-textarea:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
}
.form-card-dark .form-input::placeholder,
.form-card-dark .form-textarea::placeholder { color: rgba(255,255,255,0.3); }

/* ── 16. CTA SECTIONS ────────────────────────────── */
.cta-section {
  background: var(--grad-hero);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(14,165,233,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(37,99,235,0.2) 0%, transparent 50%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.70); font-size: 1.15rem; margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-section .offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}
.cta-section-inline {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  margin: var(--space-xl) 0;
}
.cta-banner {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); font-size: 1.75rem; margin-bottom: 0.5rem; }
.cta-banner p { color: rgba(255,255,255,0.75); margin: 0; }

/* ── 17. PROCESS STEPS ───────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-blue);
  border: 3px solid var(--white);
}
.process-step h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--text); }
.process-step p { font-size: 0.875rem; color: var(--text-light); }

/* ── 18. COMPARISON TABLE ────────────────────────── */
.comparison-table {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.comparison-table thead {
  background: var(--grad-primary);
}
.comparison-table th {
  padding: 1.2rem 1.5rem;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
}
.comparison-table th:first-child { border-radius: 0; }
.comparison-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
  color: var(--text-light);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:nth-child(even) { background: var(--gray-50); }
.comparison-table tbody tr:hover { background: rgba(37,99,235,0.04); }
.comparison-table .check { color: var(--success); font-size: 1.1rem; }
.comparison-table .x { color: var(--gray-400); }
.comparison-table .feature-name { font-weight: 600; color: var(--text); }

/* ── 19. SECTION BACKGROUNDS ─────────────────────── */
.bg-dark { background: var(--dark-2); }
.bg-dark-2 { background: var(--dark); }
.bg-light { background: var(--gray-50); }
.bg-white { background: var(--white); }
.bg-gradient { background: var(--grad-primary); }
.bg-gradient-dark { background: var(--grad-dark); }
.section-wave {
  overflow: hidden;
  position: relative;
}
.wave-top {
  position: relative;
  margin-top: -1px;
}
.wave-bottom {
  position: relative;
  margin-bottom: -1px;
}

/* ── 20. SERVICE AREAS ───────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.area-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  cursor: pointer;
}
.area-chip:hover {
  border-color: var(--primary);
  background: rgba(37,99,235,0.04);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.area-chip i { color: var(--primary); font-size: 0.9rem; }

/* ── 21. REVIEW STARS / RATING ───────────────────── */
.stars { color: var(--accent); letter-spacing: 0.1em; }
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-dark);
}
.rating-badge .stars { font-size: 0.8rem; }

/* ── 22. ICON LIST ───────────────────────────────── */
.icon-list { display: flex; flex-direction: column; gap: 0.75rem; }
.icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: var(--text-light);
}
.icon-list-item .icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(37,99,235,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.7rem;
  margin-top: 0.1rem;
}
.icon-list-item .icon.gold { background: rgba(245,158,11,0.1); color: var(--accent); }
.icon-list-item .icon.green { background: rgba(16,185,129,0.1); color: var(--success); }

/* ── 23. TABS ────────────────────────────────────── */
.tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.tab-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s ease; }

/* ── 24. FOOTER ──────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: var(--space-3xl) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-brand .logo .icon {
  width: 44px;
  height: 44px;
  background: var(--grad-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.footer-brand .logo .name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.footer-brand .logo .tagline { font-size: 0.65rem; color: var(--secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-2px); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a::before { content: '→'; font-size: 0.75rem; opacity: 0; transform: translateX(-4px); transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 0.25rem; }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.60);
}
.footer-contact-item i { color: var(--secondary); margin-top: 0.15rem; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.75); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.40); margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.40); transition: var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.75); }
.footer-cta-strip {
  background: var(--grad-primary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-cta-strip h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 0.25rem; }
.footer-cta-strip p { color: rgba(255,255,255,0.75); font-size: 0.875rem; margin: 0; }

/* ── 25. FLOATING ELEMENTS ───────────────────────── */
.floating-cta-btn { display: none !important; }
.floating-cta-btn-DISABLED {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--grad-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  padding: 0.9rem 1.75rem;
  font-size: 0.925rem;
  font-weight: 700;
  box-shadow: var(--shadow-blue), 0 0 0 0 rgba(37,99,235,0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 900;
  transition: var(--transition);
  animation: float-cta 3s ease-in-out infinite;
}
.floating-cta-btn:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 20px 60px rgba(37,99,235,0.55); animation: none; }
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--grad-primary);
  z-index: 2000;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}
.back-to-top {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }

/* ── 26. SCROLL ANIMATIONS ───────────────────────── */
.animate { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.animate.fade-up { transform: translateY(40px); }
.animate.fade-down { transform: translateY(-40px); }
.animate.fade-left { transform: translateX(40px); }
.animate.fade-right { transform: translateX(-40px); }
.animate.scale { transform: scale(0.9); }
.animate.visible { opacity: 1; transform: none; }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }

/* ── 27. HIGHLIGHT / PROMO ELEMENTS ──────────────── */
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--grad-gold);
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(245,158,11,0.35);
}
.new-badge {
  display: inline-block;
  background: var(--danger);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  vertical-align: middle;
  margin-left: 0.4rem;
}
.guarantee-box {
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.2);
  border-left: 4px solid var(--success);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.guarantee-box i { color: var(--success); font-size: 1.25rem; margin-top: 0.1rem; flex-shrink: 0; }
.guarantee-box h5 { color: var(--text); margin-bottom: 0.25rem; }
.guarantee-box p { font-size: 0.875rem; color: var(--text-light); margin: 0; }
.alert-box {
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.2);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
}
.alert-box i { color: var(--primary); margin-top: 0.15rem; flex-shrink: 0; }

/* ── 28. TWO-COLUMN LAYOUTS ──────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-visual {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}
.split-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15) 0%, transparent 60%);
}

/* ── 29. IMAGE VISUAL BLOCKS ─────────────────────── */
.visual-block {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.visual-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.12) 0%, transparent 50%);
}
.visual-block .visual-emoji { position: relative; z-index: 1; }

/* ── 30. POPUP / MODAL ───────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(6px);
  padding: 1rem;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 540px;
  width: 100%;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: var(--transition);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  color: var(--text-light);
}
.modal-close:hover { background: var(--gray-200); color: var(--text); }

/* ── 31. CAREER LISTINGS ─────────────────────────── */
.job-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: var(--transition);
  flex-wrap: wrap;
}
.job-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.job-info h4 { color: var(--text); margin-bottom: 0.4rem; }
.job-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.5rem; }
.job-tag {
  background: var(--gray-100);
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}
.job-tag.featured { background: rgba(37,99,235,0.1); color: var(--primary); }

/* ── 32. TIMELINE ────────────────────────────────── */
.timeline { position: relative; padding-left: 3rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 6px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary), transparent);
}
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.6rem;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--grad-primary);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-blue);
}
.timeline-item h4 { color: var(--text); margin-bottom: 0.5rem; }
.timeline-item p { font-size: 0.9rem; color: var(--text-light); }
.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── 33. KEYFRAME ANIMATIONS ─────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}
@keyframes float-cta {
  0%, 100% { transform: translateY(0); box-shadow: var(--shadow-blue); }
  50%       { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(37,99,235,0.5); }
}
@keyframes particleFloat {
  0%   { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-100vh) translateX(40px) scale(1.2); opacity: 0; }
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.6; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* ── 34. RESPONSIVE DESIGN ───────────────────────── */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid .footer-brand { grid-column: 1/-1; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}
@media (max-width: 1024px) {
  :root { --nav-height: 68px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-phone { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .trust-cards { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .dropdown-menu { display: none; }
}
@media (max-width: 768px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 3rem;
  }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .split-section.reverse { direction: ltr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-brand { grid-column: 1/-1; }
  .hero-stats { gap: 1.5rem; }
  .hero-divider { display: none; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.85rem; }
  .comparison-table th, .comparison-table td { padding: 0.8rem 1rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .floating-cta-btn { bottom: 1rem; right: 1rem; padding: 0.75rem 1.25rem; font-size: 0.85rem; }
  .back-to-top { bottom: 5rem; right: 1rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .trust-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .announcement-bar .bar-inner { gap: 0.75rem; font-size: 0.8rem; }
}

/* ── 35. UTILITY OVERRIDES ───────────────────────── */
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }
.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-blue { box-shadow: var(--shadow-blue); }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── 36. PRINT ───────────────────────────────────── */
@media print {
  .navbar, .announcement-bar, .floating-cta-btn, .back-to-top, .footer { display: none; }
  body { color: #000; }
}

/* ── IMAGE & MEDIA ENHANCEMENTS ──────────────────── */

/* Logo */
.nav-logo-img { height: 44px; width: auto; }
.footer-logo-img { height: 48px; width: auto; }

/* Hero Photo Panel */
.hero-photo-panel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
  aspect-ratio: 4/5;
  max-height: 580px;
}
.hero-photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-photo-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,13,26,0.5) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.hero-badge-overlay {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  background: rgba(6,13,26,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  padding: 0.45rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
}
.hero-badge-overlay .dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
.hero-rating-overlay {
  position: absolute;
  bottom: 1.5rem;
  right: 1.25rem;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-lg);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.hero-rating-overlay .avatar {
  width: 38px; height: 38px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.hero-rating-overlay .stars { color: var(--accent); font-size: 0.78rem; }
.hero-rating-overlay .name { font-size: 0.82rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
.hero-rating-overlay .loc { font-size: 0.72rem; color: var(--gray-500); }

/* Service card with image */
.service-card-photo {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -2rem -2rem 1.5rem;
  width: calc(100% + 4rem);
  position: relative;
}
.service-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-photo img { transform: scale(1.06); }
.service-card-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--white));
}

/* Photo Gallery Grid */
.photo-gallery-section { background: var(--gray-50); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 1rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
}
.gallery-item.gallery-tall { grid-row: span 2; }
.gallery-item.gallery-wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,13,26,0.3) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.gallery-tall { grid-row: span 1; }
  .gallery-item.gallery-wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.gallery-wide { grid-column: span 1; }
  .gallery-item { height: 220px; }
}

/* Video Section */
.video-section { background: var(--grad-dark); }
.video-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) { .video-split { grid-template-columns: 1fr; } }
.video-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  background: var(--dark);
  aspect-ratio: 16/9;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  cursor: pointer;
  transition: var(--transition);
}
.video-play-overlay:hover { background: rgba(0,0,0,0.1); }
.video-play-btn {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  transition: var(--transition-bounce);
}
.video-play-overlay:hover .video-play-btn { transform: scale(1.12); }
.video-play-overlay.hidden { display: none; }

/* Split image block */
.split-img-block {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 420px;
}
.split-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 420px;
}
.split-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
}
.split-img-badge .badge-icon {
  width: 44px; height: 44px;
  background: var(--grad-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.split-img-badge .badge-text h5 { font-size: 0.9rem; color: var(--text); margin-bottom: 0.1rem; }
.split-img-badge .badge-text span { font-size: 0.78rem; color: var(--gray-500); }

/* Photo strip (horizontal scroll) */
.photo-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--gray-200);
}
.photo-strip::-webkit-scrollbar { height: 4px; }
.photo-strip::-webkit-scrollbar-track { background: var(--gray-200); border-radius: 2px; }
.photo-strip::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }
.photo-strip-item {
  flex-shrink: 0;
  width: 200px;
  height: 150px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.photo-strip-item:hover img { transform: scale(1.08); }

/* Blog card with real photo */
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

/* Green section image */
.green-split-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  position: relative;
}
.green-split-img img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; display: block; }

/* Team strip for careers/about */
.team-photo-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-lg);
}
.team-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }


/* ══════════════════════════════════════════════════════
   PURE CLEANERS MD — PREMIUM APPLE-LEVEL UPGRADE
   Mobile-First · High-Conversion · World-Class
   ══════════════════════════════════════════════════════ */

/* ── PREMIUM DESIGN TOKENS ────────────────────────── */
:root {
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo:  cubic-bezier(0.19, 1, 0.22, 1);
  --radius-2xl:     40px;
  --shadow-card:    0 2px 12px rgba(0,0,0,0.05), 0 20px 40px rgba(0,0,0,0.07);
  --shadow-card-hover: 0 4px 24px rgba(0,0,0,0.08), 0 40px 80px rgba(0,0,0,0.14);
}

/* ── GLOBAL PREMIUM BASE ──────────────────────────── */
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }

h1 { font-size: clamp(2.4rem, 6vw, 5rem); letter-spacing: -0.035em; line-height: 1.04; }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); letter-spacing: -0.028em; line-height: 1.1; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.65rem); letter-spacing: -0.02em; }

.hero-title { font-size: clamp(2.8rem, 7vw, 6rem); letter-spacing: -0.04em; line-height: 1.0; }

/* ── ANNOUNCEMENT BAR ─────────────────────────────── */
.announcement-bar { background: linear-gradient(90deg, #1D4ED8 0%, #2563EB 40%, #0EA5E9 100%); padding: 0.55rem 1rem; font-size: 0.82rem; }
.announcement-bar .sep { display: none; }
@media (min-width: 768px) { .announcement-bar .sep { display: inline; opacity: 0.4; } }
.announcement-bar .bar-item:not(:first-child) { display: none; }
@media (min-width: 640px) { .announcement-bar .bar-item:not(:first-child) { display: flex; } }
@media (max-width: 640px) {
  .announcement-bar .bar-inner { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; gap: 0.5rem; scrollbar-width: none; padding: 0 0.25rem; }
  .announcement-bar .bar-inner::-webkit-scrollbar { display: none; }
}

/* ── PREMIUM NAVBAR ───────────────────────────────── */
.navbar {
  background: rgba(4, 10, 20, 0.92);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  height: 68px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.navbar.scrolled { background: rgba(4, 10, 20, 0.97); box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 8px 32px rgba(0,0,0,0.4); }
.nav-cta {
  background: var(--primary);
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(37,99,235,0.45);
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(37,99,235,0.55); }
@media (max-width: 1023px) { .navbar { height: 60px; } :root { --nav-height: 60px; } .nav-logo-img { height: 38px; } }
@media (max-width: 480px) { .nav-actions .nav-phone { display: none; } }

/* ── PREMIUM BUTTONS ──────────────────────────────── */
.btn { font-size: 0.925rem; font-weight: 700; letter-spacing: -0.01em; border-radius: var(--radius-full); transition: all 0.25s ease; position: relative; overflow: hidden; }
.btn-primary { background: var(--primary); box-shadow: 0 4px 24px rgba(37,99,235,0.4), inset 0 1px 0 rgba(255,255,255,0.15); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,99,235,0.55); }
.btn-accent { background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); color: #1a0a00; font-weight: 800; box-shadow: 0 4px 24px rgba(245,158,11,0.4); }
.btn-accent:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(245,158,11,0.55); }
.btn-xl { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 0.975rem; }
@media (max-width: 480px) {
  .btn-xl { padding: 1rem 2rem; font-size: 1rem; }
  .btn-lg { padding: 0.85rem 1.75rem; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { width: 100%; justify-content: center; }
}

/* ── SECTION SPACING ──────────────────────────────── */
@media (max-width: 768px) { .section { padding: 4rem 0; } .section-sm { padding: 3rem 0; } .section-header { margin-bottom: 2.5rem; } }
@media (max-width: 480px) { .section { padding: 3rem 0; } .container { padding: 0 1.1rem; } .section-header h2 { font-size: 1.75rem; } }

/* ── PREMIUM HERO ─────────────────────────────────── */
.hero-home { min-height: 100svh; background: radial-gradient(ellipse at 55% 35%, #162454 0%, #060D1A 70%); }
.hero-home::after { height: 160px; background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.97) 80%, #fff 100%); }
.hero-badge { font-size: 0.75rem; letter-spacing: 0.1em; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.hero-badge .dot { width: 6px; height: 6px; background: #22D3EE; box-shadow: 0 0 8px #22D3EE; }
.hero-subtitle { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: rgba(255,255,255,0.65); line-height: 1.65; }
.hero-photo-panel { border-radius: 28px; box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05); }
.hero-badge-overlay { border-radius: var(--radius-full); background: rgba(4,10,20,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.10); font-size: 0.75rem; }
.hero-rating-overlay { border-radius: var(--radius-lg); background: rgba(255,255,255,0.98); box-shadow: 0 16px 48px rgba(0,0,0,0.22); }

@media (max-width: 900px) { .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); } .hero-content-wrap { padding-top: calc(var(--nav-height) + 1.5rem); padding-bottom: 5rem; } .hero-stats { gap: 1.25rem; } .hero-stat .num { font-size: 1.6rem; } }
@media (max-width: 480px) { .hero-actions { flex-direction: column; gap: 0.75rem; } .hero-actions .btn { width: 100%; justify-content: center; } .hero-title { font-size: clamp(2rem, 9vw, 2.8rem); } .hero-stats { flex-wrap: wrap; gap: 1rem 2rem; } .hero-divider { display: none; } }

/* ── TRUST BAR ────────────────────────────────────── */
.trust-bar { background: #fff; border-top: none; border-bottom: 1px solid var(--gray-100); padding: 1.1rem 0; }
.trust-badges { gap: 0; }
.trust-badge { padding: 0.4rem 1.5rem; border-right: 1px solid var(--gray-100); font-size: 0.82rem; color: var(--gray-600); white-space: nowrap; flex-shrink: 0; }
.trust-badge:last-child { border-right: none; }
@media (max-width: 768px) { .trust-badges { gap: 0.5rem; flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding: 0 1rem; scrollbar-width: none; } .trust-badges::-webkit-scrollbar { display: none; } .trust-badge { border-right: none; padding: 0.4rem 0.8rem; } }

/* ── PREMIUM CARDS ────────────────────────────────── */
.service-card { border: 1px solid var(--gray-100); border-radius: 20px; box-shadow: var(--shadow-card); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); border-color: rgba(37,99,235,0.12); }
.service-card-photo { height: 210px; margin: -2rem -2rem 1.75rem; width: calc(100% + 4rem); }
.service-card-photo img { transition: transform 0.6s ease; }
.service-card:hover .service-card-photo img { transform: scale(1.07); }

.feature-card { border-radius: 20px; border: 1px solid var(--gray-100); box-shadow: var(--shadow-card); padding: 2rem 1.75rem; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); border-color: rgba(37,99,235,0.12); }
.feature-icon { width: 56px; height: 56px; border-radius: 16px; font-size: 1.4rem; }

.testimonial-card { border-radius: 20px; border: 1px solid var(--gray-100); box-shadow: var(--shadow-card); padding: 2rem 1.75rem; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.testimonial-text { font-size: 0.975rem; line-height: 1.75; }

.blog-card { border-radius: 20px; border: 1px solid var(--gray-100); box-shadow: var(--shadow-card); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); border-color: rgba(37,99,235,0.1); }
.blog-card-img { height: 220px; border-radius: 20px 20px 0 0; }
.blog-card-img img { border-radius: 20px 20px 0 0; }
.blog-card-body { padding: 1.75rem; }

.pricing-card { border-radius: 24px; box-shadow: var(--shadow-card); border: 1px solid var(--gray-100); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); }
.pricing-card.featured { border-color: var(--primary); box-shadow: 0 8px 32px rgba(37,99,235,0.2), 0 40px 80px rgba(37,99,235,0.1); }

/* ── SERVICES GRID MOBILE ─────────────────────────── */
@media (max-width: 900px) { .services-overview-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 560px) { .services-overview-grid { grid-template-columns: 1fr !important; } }

/* ── PROCESS STEPS ────────────────────────────────── */
.step-number { width: 60px; height: 60px; font-size: 1.3rem; box-shadow: 0 8px 24px rgba(37,99,235,0.35), 0 0 0 6px rgba(37,99,235,0.1); }
@media (max-width: 768px) { .process-steps { grid-template-columns: 1fr 1fr; gap: 0.75rem; } .process-steps::before { display: none; } .process-step { padding: 1.5rem; border: 1px solid var(--gray-100); border-radius: 16px; } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }

/* ── STATS SECTION ────────────────────────────────── */
.stats-section { background: linear-gradient(135deg, #1e3a8a 0%, #1D4ED8 40%, #0EA5E9 100%); padding: 4.5rem 0; }
.stat-item { padding: 2rem 1.5rem; }
.stat-item .stat-num { font-size: clamp(2.5rem, 5vw, 4rem); }

/* ── SPLIT SECTIONS ───────────────────────────────── */
.why-split, .green-section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.video-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
@media (max-width: 900px) { .why-split, .green-section-inner, .video-split { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ── SPLIT IMAGE BLOCKS ───────────────────────────── */
.split-img-block { border-radius: 28px; box-shadow: 0 32px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.04); min-height: 480px; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.split-img-block:hover { transform: translateY(-6px); box-shadow: 0 48px 100px rgba(0,0,0,0.22); }
.split-img-block img { min-height: 480px; border-radius: 28px; }
.split-img-badge { border-radius: var(--radius-xl); padding: 1.1rem 1.4rem; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 8px 40px rgba(0,0,0,0.18); bottom: 1.75rem; left: 1.75rem; }
.split-img-badge .badge-icon { width: 48px; height: 48px; border-radius: 14px; }
.split-img-badge .badge-text h5 { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.split-img-badge .badge-text span { font-size: 0.78rem; color: var(--gray-500); }
@media (max-width: 768px) { .split-img-block { min-height: 300px; border-radius: 20px; } .split-img-block img { min-height: 300px; border-radius: 20px; } }

/* ── PHOTO GALLERY MOBILE ─────────────────────────── */
.gallery-grid { border-radius: 28px; gap: 12px; }
.gallery-item { border-radius: 18px; }
.gallery-item img { border-radius: 18px; }
.photo-strip { gap: 10px; }
.photo-strip-item { flex-shrink: 0; scroll-snap-align: start; width: 200px; height: 140px; border-radius: 16px; overflow: hidden; }
.photo-strip-item img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 16px; transition: transform 0.4s ease; }
.photo-strip-item:hover img { transform: scale(1.06); }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 8px; } .gallery-item.gallery-tall { grid-row: span 1; height: 200px; } .gallery-item { height: 180px; border-radius: 12px; } .gallery-item img { border-radius: 12px; } .photo-strip-item { width: 160px; height: 110px; } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-item.gallery-wide { grid-column: span 1; } .gallery-item { height: 220px; border-radius: 14px; } }

/* ── VIDEO PREMIUM ────────────────────────────────── */
.video-wrapper { border-radius: 28px; box-shadow: 0 32px 100px rgba(0,0,0,0.55); }
.video-play-btn { width: 80px; height: 80px; background: rgba(255,255,255,0.96); box-shadow: 0 12px 48px rgba(0,0,0,0.4); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.video-play-btn i { font-size: 1.7rem; color: var(--primary); margin-left: 4px; }

/* ── BLOG MOBILE ──────────────────────────────────── */
@media (max-width: 768px) { .blog-preview-grid { grid-template-columns: 1fr; } }

/* ── FAQ PREMIUM ──────────────────────────────────── */
.faq-item { border-radius: 16px; border: 1px solid var(--gray-100); box-shadow: 0 1px 4px rgba(0,0,0,0.04); margin-bottom: 0.6rem; }
.faq-item.open { border-color: rgba(37,99,235,0.2); box-shadow: 0 4px 24px rgba(37,99,235,0.08); }
.faq-question { padding: 1.35rem 1.5rem; font-size: 1rem; }

/* ── CTA SECTION PREMIUM ──────────────────────────── */
.cta-section { background: radial-gradient(ellipse at 50% 0%, #1e40af 0%, #060D1A 65%); padding: 7rem 0; }
.cta-section h2 { font-size: clamp(2rem, 5vw, 3.8rem); letter-spacing: -0.03em; }
.cta-section .offer-badge { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.25); color: #FCD34D; }
@media (max-width: 640px) { .cta-section { padding: 4rem 0; } .cta-section .btn-group { flex-direction: column; align-items: stretch; gap: 0.75rem; } .cta-section .btn { width: 100%; justify-content: center; } }

/* ── GREEN SECTION PREMIUM ────────────────────────── */
.green-section { background: linear-gradient(135deg, #022C22 0%, #065F46 50%, #047857 100%); position: relative; overflow: hidden; }
.green-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(52,211,153,0.12) 0%, transparent 60%); pointer-events: none; }
.green-split-img { border-radius: 28px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.35); }
.green-split-img img { width: 100%; display: block; border-radius: 28px; min-height: 420px; object-fit: cover; }
@media (max-width: 768px) { .green-split-img img { min-height: 260px; } }

/* ── PROMO SECTION MOBILE ─────────────────────────── */
@media (max-width: 640px) { .promo-inner { flex-direction: column; text-align: center; gap: 1.25rem; } .promo-inner a { width: 100%; justify-content: center; } }

/* ── COMPARISON TABLE MOBILE ──────────────────────── */
@media (max-width: 768px) { .comparison-table th:last-child, .comparison-table td:last-child { display: none; } .comparison-table { font-size: 0.82rem; } .comparison-table th, .comparison-table td { padding: 0.75rem 0.9rem; } }
@media (max-width: 480px) { .comparison-table { font-size: 0.78rem; } .comparison-table th, .comparison-table td { padding: 0.65rem 0.75rem; } }

/* ── FOOTER PREMIUM ───────────────────────────────── */
.footer { background: #040a14; }
.footer-cta-strip { background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 50%, #0EA5E9 100%); border-radius: 24px; box-shadow: 0 16px 64px rgba(37,99,235,0.35); }
.footer-grid { gap: 2rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-grid .footer-brand { grid-column: 1 / -1; } .footer-cta-strip { flex-direction: column; text-align: center; padding: 2rem 1.5rem; gap: 1.25rem; } .footer-cta-strip .btn-group { justify-content: center; flex-direction: column; align-items: stretch; } .footer-cta-strip .btn { width: 100%; justify-content: center; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; gap: 0.6rem; } .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 1rem; } }

/* ── FLOATING CTA PREMIUM ─────────────────────────── */
.floating-cta-btn { bottom: 1.5rem; right: 1.5rem; border-radius: var(--radius-full); padding: 0.85rem 1.6rem; font-size: 0.9rem; font-weight: 700; box-shadow: 0 8px 32px rgba(37,99,235,0.5); }
@keyframes float-cta-pulse { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.floating-cta-btn { animation: float-cta-pulse 3s ease-in-out infinite; }
.floating-cta-btn:hover { animation: none; transform: translateY(-4px) scale(1.04); box-shadow: 0 20px 60px rgba(37,99,235,0.6); }
.back-to-top { bottom: 5.5rem; right: 1.5rem; }

/* ── STICKY MOBILE CTA BAR ─── KEY CONVERSION TOOL ── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 890;
  background: rgba(4,10,20,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  gap: 0.6rem;
  align-items: center;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
}
@media (max-width: 1023px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 72px; }
  .floating-cta-btn { display: none; }
  .back-to-top { bottom: 5.5rem; }
}
.mobile-cta-bar .mcta-book {
  flex: 1;
  background: var(--primary);
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(37,99,235,0.45);
  transition: all 0.2s ease;
}
.mobile-cta-bar .mcta-book:hover { background: var(--primary-dark); }
.mobile-cta-bar .mcta-call {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
  transition: all 0.2s ease;
}
.mobile-cta-bar .mcta-call:hover { background: rgba(255,255,255,0.15); }
.mobile-cta-bar .mcta-save {
  font-size: 0.6rem; font-weight: 700; color: #FCD34D; text-align: center; line-height: 1.2; white-space: nowrap;
}
@media (max-width: 400px) { .mobile-cta-bar .mcta-save { display: none; } }

/* ── INLINE CTA STRIP ─────────────────────────────── */
.cta-inline-strip {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563EB 60%, #0EA5E9 100%);
  border-radius: 28px; padding: 3.5rem 3rem; text-align: center; position: relative; overflow: hidden; margin: 4rem 0;
}
.cta-inline-strip::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%); pointer-events: none; }
.cta-inline-strip h2 { color: #fff; margin-bottom: 0.75rem; font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
.cta-inline-strip p { color: rgba(255,255,255,0.72); font-size: 1.1rem; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
@media (max-width: 640px) { .cta-inline-strip { padding: 2.5rem 1.5rem; border-radius: 20px; margin: 2.5rem 0; } .cta-inline-strip p { font-size: 1rem; } }

/* ── GUARANTEE BADGE CTA ──────────────────────────── */
.guarantee-badge-cta {
  display: flex; align-items: center; gap: 2rem; background: #fff; border: 1px solid var(--gray-100); border-radius: 24px; padding: 2rem 2.5rem; box-shadow: var(--shadow-card); flex-wrap: wrap;
}
.guarantee-badge-cta .gbc-icon { width: 72px; height: 72px; background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #1a0800; flex-shrink: 0; box-shadow: 0 8px 24px rgba(245,158,11,0.35); }
.guarantee-badge-cta .gbc-body { flex: 1; min-width: 200px; }
.guarantee-badge-cta h3 { font-size: 1.2rem; margin-bottom: 0.3rem; color: var(--text); }
.guarantee-badge-cta p { margin: 0; font-size: 0.9rem; color: var(--gray-500); }
@media (max-width: 640px) { .guarantee-badge-cta { flex-direction: column; text-align: center; padding: 1.75rem; gap: 1rem; } }

/* ── PHONE CTA PILL ───────────────────────────────── */
.phone-cta-pill {
  display: inline-flex; align-items: center; gap: 0.75rem; background: rgba(37,99,235,0.06); border: 1.5px solid rgba(37,99,235,0.2); border-radius: var(--radius-full); padding: 0.7rem 1.5rem; color: var(--primary); font-weight: 700; font-size: 1.05rem; transition: all 0.25s ease;
}
.phone-cta-pill:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: scale(1.02); box-shadow: 0 8px 24px rgba(37,99,235,0.35); }
.phone-cta-pill .pcta-icon { width: 36px; height: 36px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.9rem; flex-shrink: 0; transition: background 0.25s ease; }
.phone-cta-pill:hover .pcta-icon { background: rgba(255,255,255,0.2); }

/* ── URGENCY BANNER ───────────────────────────────── */
.urgency-banner {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); border-radius: 20px; padding: 1.5rem 2rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin: 2rem 0; box-shadow: 0 8px 32px rgba(245,158,11,0.3);
}
.urgency-banner .ub-icon { font-size: 2rem; flex-shrink: 0; }
.urgency-banner .ub-text { flex: 1; min-width: 200px; }
.urgency-banner h4 { color: #1a0800; font-size: 1.1rem; margin-bottom: 0.2rem; }
.urgency-banner p { color: rgba(0,0,0,0.6); font-size: 0.875rem; margin: 0; }
@media (max-width: 640px) { .urgency-banner { flex-direction: column; text-align: center; padding: 1.25rem 1.5rem; } .urgency-banner a { width: 100%; justify-content: center; } }

/* ── SCROLL ANIMATIONS UPGRADE ────────────────────── */
.animate.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1), transform 0.7s cubic-bezier(0.19, 1, 0.22, 1); }
.animate.fade-right { opacity: 0; transform: translateX(-32px); transition: opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1), transform 0.7s cubic-bezier(0.19, 1, 0.22, 1); }
.animate.fade-left { opacity: 0; transform: translateX(32px); transition: opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1), transform 0.7s cubic-bezier(0.19, 1, 0.22, 1); }
.animate.scale { opacity: 0; transform: scale(0.92); transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
.animate.visible { opacity: 1; transform: none !important; }
.animate-delay-1 { transition-delay: 0.1s !important; }
.animate-delay-2 { transition-delay: 0.2s !important; }
.animate-delay-3 { transition-delay: 0.3s !important; }
.animate-delay-4 { transition-delay: 0.4s !important; }

/* ── PAGE HERO INNER PAGES ────────────────────────── */
.page-hero { background: linear-gradient(135deg, #060D1A 0%, #0F2044 60%, #1E3A5F 100%); overflow: hidden; position: relative; }
.page-hero::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 80px; background: linear-gradient(to bottom, transparent, var(--white)); }
.page-hero h1 { color: #fff; }
.page-hero .subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ── FORM MOBILE ──────────────────────────────────── */
@media (max-width: 640px) { .form-card { padding: 1.5rem; } .form-card-dark { padding: 1.5rem; } .form-grid-2 { grid-template-columns: 1fr; } }

/* ── GRID MOBILE ──────────────────────────────────── */
@media (max-width: 768px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .trust-cards { grid-template-columns: 1fr 1fr; gap: 0.75rem; } .stats-grid { grid-template-columns: 1fr 1fr; } }

/* ── SCROLL PROGRESS PREMIUM ──────────────────────── */
.scroll-progress { height: 2.5px; background: linear-gradient(90deg, #2563EB 0%, #0EA5E9 50%, #10B981 100%); }

/* ── MOBILE MENU PREMIUM ──────────────────────────── */
.mobile-menu { width: min(380px, 92vw); }
.mobile-nav-link { font-size: 1.05rem; padding: 0.95rem 0; }
.mobile-cta-group .btn { padding: 0.9rem; font-size: 0.95rem; }

/* ── TRUST SECTION PREMIUM ────────────────────────── */
.trust-section { background: linear-gradient(135deg, #060D1A 0%, #0F2044 100%); }
.trust-card { border-radius: 20px; }
.trust-card-icon { width: 68px; height: 68px; border-radius: 18px; }

/* ── AREA BADGES MOBILE ───────────────────────────── */
@media (max-width: 480px) { .area-badge { font-size: 0.8rem; padding: 0.4rem 0.8rem; } }

/* ── BACK TO TOP ──────────────────────────────────── */
@media (max-width: 1023px) { .back-to-top { right: 1rem; } }

/* ── HERO PHOTO PANEL PAGE HERO ───────────────────── */
.page-hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) { .page-hero-inner { grid-template-columns: 1fr; } .page-hero-inner .hero-photo-panel { display: none; } }

/* ═══════════════════════════════════════════════════
   GLOBAL LAYOUT FIXES — applied site-wide
   ═══════════════════════════════════════════════════ */

/* Bug 3: Max-width constraints — nothing stretches beyond 960px */
.container { max-width: 960px !important; margin-left: auto !important; margin-right: auto !important; padding-left: 32px !important; padding-right: 32px !important; }

/* Section padding cap — remove excessive empty air */
section, .section { padding-top: 56px !important; padding-bottom: 56px !important; }

/* Typography max-widths — tight editorial text blocks */
p { max-width: 600px; }
li { max-width: 600px; }
.section-body { max-width: 600px; }
h1 { max-width: 760px; letter-spacing: -0.03em !important; line-height: 1.05 !important; }
h2 { max-width: 760px; letter-spacing: -0.02em !important; line-height: 1.15 !important; }

/* Centered sections — constrain text inside */
.section-header p, .section-header .subtitle { max-width: 560px; }
.text-center p { max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-section p { max-width: 520px; }

/* Bug 1: Remove full-viewport min-height from hero on all pages */
.hero-home { min-height: unset !important; }

/* Bug 1: Remove the white gradient overlay on page-hero (creates fake blank space) */
.page-hero::after { display: none !important; }

/* Bug 2: Icon-list text visible on dark backgrounds */
.icon-list-item { color: inherit; }
.icon-list-item > div:last-child { color: rgba(255,255,255,0.75); }

/* Bug 4: Hide any remaining rating-badge and inflated stat elements */
.rating-badge { display: none !important; }
