/* ==========================================================================
   JURA MAIDS - LUXURY HOME CLEANING SERVICES (CHARLOTTE, NC)
   Design System & High-Conversion Stylesheet (Aligned with Jura Brand Logo)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Palette - Exactly Aligned to Jura Maids Logo */
  --brand-pink: #E6007E;
  --brand-pink-hover: #C5006B;
  --brand-pink-dark: #9E0055;
  --brand-pink-soft: #FDF2F8;
  --brand-pink-subtle: #FCE7F3;
  --brand-pink-border: #FBCFE8;
  
  --primary-navy: #002D56;
  --primary-navy-dark: #001E3D;
  --primary-navy-light: #0A3D6E;
  --primary-navy-soft: #EBF3FA;

  --accent-cyan: #0284C7;
  --accent-cyan-light: #38BDF8;
  --accent-amber: #F59E0B;
  --accent-emerald: #10B981;

  /* Neutrals & Surfaces */
  --bg-pure: #FFFFFF;
  --bg-offwhite: #F8FAFC;
  --bg-subtle: #F1F5F9;
  --bg-dark: #001A33;
  --bg-card: #FFFFFF;
  
  --text-main: #001E3D;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;

  --border-subtle: #E2E8F0;
  --border-focus: #E6007E;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 45, 86, 0.08), 0 2px 4px -1px rgba(0, 45, 86, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 45, 86, 0.1), 0 4px 6px -2px rgba(0, 45, 86, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 45, 86, 0.12), 0 10px 10px -5px rgba(0, 45, 86, 0.04);
  --shadow-pink-glow: 0 10px 25px -5px rgba(230, 0, 126, 0.35);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Container */
  --container-max: 1240px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-offwhite);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

picture {
  display: contents;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-navy);
  font-weight: 700;
  line-height: 1.2;
}

.highlight-pink {
  color: var(--brand-pink);
  position: relative;
  display: inline-block;
}

.highlight-pink::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--brand-pink-subtle);
  z-index: -1;
  border-radius: 4px;
}

/* Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-pink {
  background: var(--brand-pink-soft);
  color: var(--brand-pink);
  border: 1px solid var(--brand-pink-border);
}

.badge-navy {
  background: var(--primary-navy-soft);
  color: var(--primary-navy);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary, .btn-pink {
  background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-pink-dark) 100%);
  color: var(--text-white);
  box-shadow: var(--shadow-pink-glow);
}

.btn-primary:hover, .btn-pink:hover {
  background: linear-gradient(135deg, #FF1A8C 0%, var(--brand-pink) 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -5px rgba(230, 0, 126, 0.45);
}

.btn-navy {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
  color: var(--text-white);
  box-shadow: 0 10px 20px -5px rgba(0, 45, 86, 0.35);
}

.btn-navy:hover {
  background: linear-gradient(135deg, var(--primary-navy-light) 0%, var(--primary-navy) 100%);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  border-color: var(--brand-pink);
  color: var(--brand-pink);
  background: var(--brand-pink-soft);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.125rem;
  border-radius: var(--radius-lg);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   TOP BAR & NAVIGATION HEADER
   ========================================================================== */
.top-bar {
  background: var(--primary-navy-dark);
  color: var(--text-white);
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #CBD5E1;
}

.top-bar-item strong {
  color: var(--text-white);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone-link-top {
  color: #38BDF8;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.phone-link-top:hover {
  color: var(--brand-pink-soft);
}

/* Header Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}

/* Real Logo Image Styling */
.brand-logo-wrap {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.brand-logo-img:hover {
  transform: scale(1.03);
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-navy);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--brand-pink);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--brand-pink);
  transition: var(--transition-fast);
}

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

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--primary-navy);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 86px;
  left: 0;
  width: 100%;
  background: var(--bg-pure);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px;
  box-shadow: var(--shadow-xl);
  z-index: 99;
}

.mobile-nav-drawer.active {
  display: block;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.mobile-nav-links a {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
}

/* ==========================================================================
   HERO SECTION (High Conversion Above-the-Fold)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
  overflow: hidden;
}

.hero-glow-bg {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 0, 126, 0.08) 0%, rgba(0, 45, 86, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFF;
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  width: fit-content;
  box-shadow: var(--shadow-sm);
}

.stars-row {
  display: inline-flex;
  gap: 2px;
  color: var(--accent-amber);
}

.hero-rating-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.12;
  letter-spacing: -1.2px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-body);
  line-height: 1.65;
  max-width: 540px;
}

.hero-trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin-top: 10px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-navy);
}

.check-icon-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-pink-soft);
  color: var(--brand-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
   HERO GO HIGH LEVEL WIDGET EMBED & LEAD CARD
   ========================================================================== */
.lead-card-wrapper {
  background: var(--bg-pure);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px -10px rgba(0, 45, 86, 0.15);
  border: 1.5px solid var(--primary-navy-soft);
  padding: 10px 6px;
  position: relative;
  overflow: hidden;
}

.ghl-embed-wrapper {
  width: 100%;
  min-height: 480px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.ghl-embed-wrapper iframe {
  width: 100% !important;
  border: none !important;
  display: block;
}

.form-progress-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 28px;
}

.progress-track {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--border-subtle);
  transform: translateY(-50%);
  z-index: 1;
}

.progress-fill {
  position: absolute;
  top: 50%;
  left: 0;
  width: 50%;
  height: 4px;
  background: var(--brand-pink);
  transform: translateY(-50%);
  z-index: 2;
  transition: width 0.3s ease;
}

.progress-step {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-pure);
  border: 2px solid var(--border-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  position: relative;
  z-index: 3;
  transition: var(--transition-fast);
}

.progress-step.active {
  border-color: var(--brand-pink);
  background: var(--brand-pink);
  color: var(--text-white);
  box-shadow: 0 0 12px rgba(230, 0, 126, 0.4);
}

.progress-step.completed {
  border-color: var(--brand-pink);
  background: var(--brand-pink-soft);
  color: var(--brand-pink);
}

/* Step Form Content */
.form-step {
  display: none;
  animation: fadeIn 0.3s ease forwards;
}

.form-step.active {
  display: block;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-main);
  background: var(--bg-pure);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(230, 0, 126, 0.15);
}

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

.service-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.service-type-radio {
  display: none;
}

.service-type-box {
  padding: 12px;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  transition: var(--transition-fast);
  background: var(--bg-offwhite);
}

.service-type-box:hover {
  border-color: var(--brand-pink);
  background: #FFF;
}

.service-type-radio:checked + .service-type-box {
  border-color: var(--brand-pink);
  background: var(--brand-pink-soft);
  color: var(--brand-pink-dark);
  font-weight: 700;
}

.service-type-name {
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
}

.consent-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 12px;
  margin-bottom: 16px;
}

.consent-text a {
  color: var(--brand-pink);
  text-decoration: underline;
}

.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.success-state {
  text-align: center;
  padding: 30px 10px;
  display: none;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand-pink-soft);
  color: var(--brand-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* Slot for GoHighLevel Embed */
.ghl-embed-container {
  display: none;
  min-height: 480px;
}

.ghl-embed-container iframe {
  width: 100%;
  border: none;
  min-height: 480px;
}

/* ==========================================================================
   STATS & SOCIAL PROOF MARQUEE
   ========================================================================== */
.stats-section {
  background: var(--primary-navy);
  color: var(--text-white);
  padding: 44px 0;
  position: relative;
  border-top: 4px solid var(--brand-pink);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 10px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #38BDF8;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #E2E8F0;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 90px 0;
  background: var(--bg-pure);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand-pink);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-navy);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

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

.service-card {
  background: var(--bg-offwhite);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-pink);
}

.service-card-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img-wrap img {
  transform: scale(1.06);
}

.service-badge-floating {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--brand-pink);
  color: var(--text-white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--primary-navy);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
}

.service-features-list li svg {
  color: var(--brand-pink);
  flex-shrink: 0;
}

/* ==========================================================================
   ULTRA-PREMIUM COMPARISON MATRIX (Seamless Desktop & Mobile Matrix)
   ========================================================================== */
.comparison-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table-wrapper {
  background: var(--bg-pure);
  border-radius: var(--radius-xl);
  box-shadow: 0 15px 35px -5px rgba(0, 45, 86, 0.1);
  border: 1.5px solid rgba(0, 45, 86, 0.08);
  margin-top: 40px;
  overflow: hidden;
  width: 100%;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  table-layout: fixed;
}

.comparison-table th, .comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table th {
  background: #F8FAFC;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--primary-navy);
  font-weight: 800;
}

.th-feature {
  width: 44%;
  padding-left: 28px;
}

.th-jura {
  width: 34%;
  background: linear-gradient(180deg, #FFF0F7 0%, #FDF2F8 100%) !important;
  color: var(--brand-pink-dark) !important;
  font-weight: 800;
  text-align: center;
  border-left: 2px solid var(--brand-pink-border);
  border-right: 2px solid var(--brand-pink-border);
  position: relative;
}

.th-other {
  width: 22%;
  text-align: center;
  color: var(--text-muted);
  font-weight: 600;
}

/* Row Styling */
.td-feature {
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--primary-navy);
}

.td-jura {
  background: rgba(253, 242, 248, 0.65);
  text-align: center;
  font-weight: 700;
  color: var(--primary-navy);
  border-left: 2px solid var(--brand-pink-border);
  border-right: 2px solid var(--brand-pink-border);
  font-size: 0.92rem;
}

.td-other {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.jura-check-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-pink-dark);
  font-weight: 700;
}

.jura-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-pink);
  color: #FFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  box-shadow: 0 2px 6px rgba(230, 0, 126, 0.35);
  flex-shrink: 0;
}

.other-cross-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #E2E8F0;
  color: #94A3B8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ==========================================================================
   BEFORE & AFTER TRANSFORMATION SHOWCASE
   ========================================================================== */
.transform-section {
  padding: 90px 0;
  background: var(--bg-pure);
}

.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 40px;
}

.before-after-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 3;
}

.before-after-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transform-pill-left {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 45, 86, 0.85);
  color: var(--text-white);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.transform-pill-right {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--brand-pink);
  color: var(--text-white);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.transform-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.transform-benefit-box {
  display: flex;
  gap: 16px;
  background: var(--bg-offwhite);
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--brand-pink-soft);
  color: var(--brand-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.benefit-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SAFETY PROTOCOL & WHY HIRE US
   ========================================================================== */
.safety-section {
  padding: 90px 0;
  background: var(--primary-navy-dark);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

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

.safety-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.safety-badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(0, 30, 61, 0.92);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
}

.safety-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.safety-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 16px;
  transition: var(--transition-fast);
}

.safety-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brand-pink);
}

.safety-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(230, 0, 126, 0.15);
  color: var(--brand-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.safety-card-content h4 {
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.safety-card-content p {
  color: #CBD5E1;
  font-size: 0.9rem;
}

/* ==========================================================================
   TESTIMONIALS & LOCAL REVIEWS (CHARLOTTE, NC)
   ========================================================================== */
.testimonials-section {
  padding: 90px 0;
  background: var(--bg-offwhite);
}

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

.review-card {
  background: var(--bg-pure);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-pink-border);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--accent-amber);
  margin-bottom: 16px;
}

.review-quote {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand-pink-soft);
  color: var(--brand-pink);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid var(--brand-pink-border);
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-navy);
}

.author-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--brand-pink);
  font-weight: 700;
  margin-top: 2px;
}

/* ==========================================================================
   SERVICE COVERAGE AREAS
   ========================================================================== */
.areas-section {
  padding: 70px 0;
  background: var(--bg-pure);
  text-align: center;
}

.areas-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.area-pill {
  background: var(--bg-offwhite);
  border: 1px solid var(--border-subtle);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-navy);
  transition: var(--transition-fast);
}

.area-pill:hover {
  background: var(--brand-pink-soft);
  border-color: var(--brand-pink);
  color: var(--brand-pink-dark);
}

/* ==========================================================================
   FAQ ACCORDION SECTION
   ========================================================================== */
.faq-section {
  padding: 90px 0;
  background: var(--bg-offwhite);
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-pure);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--brand-pink);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.faq-chevron {
  transition: transform 0.3s ease;
  color: var(--brand-pink);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 24px;
}

/* ==========================================================================
   FINAL HIGH-IMPACT CTA SECTION
   ========================================================================== */
.final-cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
  color: var(--text-white);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--brand-pink);
}

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

.final-cta-card h2 {
  color: var(--text-white);
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.final-cta-card p {
  color: #CBD5E1;
  font-size: 1.2rem;
  margin-bottom: 36px;
}

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

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
  background: #00162B;
  color: #94A3B8;
  padding: 70px 0 30px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  color: var(--text-white);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
  background: #FFF;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  display: inline-block;
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a:hover {
  color: #FF66B2;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

.footer-legal-text {
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.5;
  margin-top: 12px;
}

/* Base styles for new mobile components (hidden on desktop) */
.carousel-dots {
  display: none;
}

.mobile-comparison-list {
  display: none;
}

/* ==========================================================================
   STICKY BOTTOM ACTION BAR (MOBILE ONLY)
   ========================================================================== */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.12);
  padding: 12px 16px;
  z-index: 999;
  border-top: 1px solid var(--border-subtle);
}

.sticky-mobile-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .safety-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .nav-links, .header-cta-group {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .navbar {
    height: 70px;
  }
  .brand-logo-img {
    height: 46px;
  }

  /* Hero Mobile Streamlined */
  .hero-section {
    padding: 20px 0 35px;
    overflow-x: hidden;
  }

  .hero-section .container {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 100%;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    margin-bottom: 14px;
  }

  /* Compact 2x2 Grid of Trust Chips */
  .hero-trust-list {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 20px;
  }

  .hero-trust-item {
    font-size: 0.78rem;
    background: #FFFFFF;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 1px 3px rgba(0, 45, 86, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* Lead Card / GHL Form in Hero */
  .lead-card-wrapper {
    padding: 0 !important;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-subtle);
    background: #FFFFFF;
    margin-top: 10px;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  .lead-card-header {
    display: none;
  }

  .ghl-embed-wrapper {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .ghl-embed-wrapper iframe {
    width: 100% !important;
    min-width: 100% !important;
    display: block !important;
  }

  /* Stats Grid */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
  }

  /* Section Titles */
  .section-title {
    font-size: 1.85rem;
  }
  .section-subtitle {
    font-size: 0.95rem;
  }

  /* ==========================================================================
     TOUCH-SWIPE CAROUSEL (Services & Reviews)
     ========================================================================== */
  .services-grid,
  .reviews-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 8px 4px 16px;
    scrollbar-width: none; /* Firefox */
    margin: 0 -4px;
  }

  .services-grid::-webkit-scrollbar,
  .reviews-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .service-card,
  .review-card {
    flex: 0 0 86% !important;
    max-width: 86% !important;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    box-shadow: var(--shadow-md);
  }

  .service-card {
    display: flex;
    flex-direction: column;
  }

  .service-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
  }

  .service-card-body .btn {
    margin-top: auto;
  }

  .review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 20px;
  }

  /* Carousel Dots */
  .carousel-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #CBD5E1;
    border: none;
    padding: 0;
    transition: all 0.25s ease;
    cursor: pointer;
  }

  .carousel-dot.active {
    width: 22px;
    border-radius: 10px;
    background: var(--brand-pink);
  }

  /* ==========================================================================
     MOBILE COMPARISON CARDS (Replaces cramped table)
     ========================================================================== */
  .comparison-table-wrapper {
    display: none !important;
  }

  .mobile-comparison-list {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .mobile-comp-card {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    box-shadow: var(--shadow-sm);
  }

  .mobile-comp-header {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--primary-navy);
    margin-bottom: 10px;
  }

  .mobile-comp-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .comp-badge-jura {
    display: inline-flex;
    align-items: center;
    background: var(--brand-pink-soft);
    color: var(--brand-pink-dark);
    border: 1px solid var(--brand-pink-border);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: var(--radius-full);
  }

  .comp-badge-other {
    display: inline-flex;
    align-items: center;
    background: #F1F5F9;
    color: #64748B;
    border: 1px solid #E2E8F0;
    font-size: 0.76rem;
    padding: 4px 10px;
    border-radius: var(--radius-full);
  }

  /* Areas Section Mobile */
  .areas-section {
    padding: 45px 0;
  }

  .areas-pills-wrap {
    gap: 8px;
    margin-top: 20px;
  }

  .area-pill {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  /* Transform Grid */
  .transform-grid {
    grid-template-columns: 1fr;
  }

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

  .final-cta-card h2 {
    font-size: 1.9rem;
  }

  /* Sticky Bottom Bar */
  .sticky-mobile-bar {
    display: block;
  }
  body {
    padding-bottom: 74px;
  }
}

/* ==========================================================================
   LEGAL PAGES STYLING (Privacy Policy & Terms of Service)
   ========================================================================== */
.legal-header-banner {
  background: linear-gradient(135deg, var(--primary-navy-dark) 0%, var(--primary-navy) 100%);
  color: var(--text-white);
  padding: 60px 0 45px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-header-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 0, 126, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.legal-breadcrumb a {
  color: var(--accent-cyan-light);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.legal-breadcrumb a:hover {
  color: #FFF;
  text-decoration: underline;
}

.legal-title {
  color: #FFF;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  color: #CBD5E1;
  font-size: 0.95rem;
}

.legal-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legal-badge-pill {
  background: rgba(230, 0, 126, 0.2);
  color: #FF80BF;
  border: 1px solid rgba(230, 0, 126, 0.4);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* Legal Layout Container */
.legal-main-section {
  padding: 60px 0 90px;
  background-color: var(--bg-offwhite);
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

/* Table of Contents (Sticky Sidebar) */
.legal-sidebar {
  position: sticky;
  top: 100px;
  background: #FFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.legal-sidebar-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand-pink-soft);
}

.legal-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-nav-list a {
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 500;
  display: block;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.legal-nav-list a:hover {
  background: var(--brand-pink-soft);
  color: var(--brand-pink);
  transform: translateX(4px);
}

/* Content Area */
.legal-content-card {
  background: #FFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal-content-card h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-content-card h2:first-of-type {
  margin-top: 0;
}

.legal-content-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy-light);
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-content-card p {
  margin-bottom: 16px;
}

.legal-content-card ul, .legal-content-card ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.legal-content-card li {
  margin-bottom: 8px;
}

.legal-content-card strong {
  color: var(--primary-navy);
}

/* A2P 10DLC Mandatory Compliance Callout Box */
.legal-a2p-callout {
  background: linear-gradient(135deg, #FFF5F9 0%, #FDF2F8 100%);
  border: 2px solid var(--brand-pink);
  border-left-width: 6px;
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 28px 0;
  box-shadow: 0 4px 12px rgba(230, 0, 126, 0.08);
}

.legal-a2p-callout-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-pink-dark);
  margin-bottom: 12px;
}

.legal-a2p-callout p {
  margin-bottom: 10px;
  color: #1E293B;
}

.legal-a2p-callout p:last-child {
  margin-bottom: 0;
}

.legal-highlight-text {
  background: #FFF0F5;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  color: var(--brand-pink-dark);
}

/* Info Box / Contact Block */
.legal-contact-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 30px;
}

.legal-contact-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.legal-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.legal-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-body);
  font-size: 0.95rem;
}

.legal-contact-item svg {
  color: var(--brand-pink);
  flex-shrink: 0;
}

/* Responsive for Legal Pages */
@media (max-width: 991px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .legal-sidebar {
    position: static;
  }
  
  .legal-content-card {
    padding: 32px 24px;
  }
  
  .legal-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .legal-content-card {
    padding: 24px 18px;
    border-radius: var(--radius-lg);
  }
  
  .legal-title {
    font-size: 1.85rem;
  }
}

