@charset "UTF-8";
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');
@import url('../../tokens.css');

/* ==========================================================================
   Base & Reset Standards
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body {
  font-family: var(--bm-font-sans);
  background-color: var(--bm-bg-canvas);
  color: var(--bm-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 72px; /* Space for mobile sticky CTA bar */
}

@media (min-width: 1025px) {
  body {
    padding-bottom: 0;
  }
}

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
  touch-action: manipulation;
}

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

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

/* ==========================================================================
   Typography Standards
   ========================================================================== */
.font-display {
  font-family: var(--bm-font-display);
}

.heading-hero {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--bm-primary-900);
}

@media (min-width: 768px) {
  .heading-hero {
    font-size: 3rem;
  }
}

.heading-section {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--bm-primary-900);
  text-align: center;
}

@media (min-width: 768px) {
  .heading-section {
    font-size: 2.25rem;
  }
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--bm-text-muted);
  text-align: center;
  max-width: 60ch;
  margin: 12px auto 0;
}

/* ==========================================================================
   Header & Scalable GNB
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bm-border-subtle);
  transition: box-shadow var(--bm-transition-base);
}

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

/* Top Utility Bar */
.top-utility-bar {
  background-color: #F1F5F9;
  border-bottom: 1px solid #E2E8F0;
  font-size: 0.8125rem;
  color: #475569;
}

.top-utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--bm-topbar-height);
}

.live-trust-ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--bm-success);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.top-links {
  display: none;
  align-items: center;
  gap: 20px;
}

@media (min-width: 768px) {
  .top-links {
    display: flex;
  }
}

.top-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--bm-text-muted);
  transition: color var(--bm-transition-fast);
}

.top-link:hover {
  color: var(--bm-primary-500);
}

.top-phone-highlight {
  font-weight: 700;
  color: var(--bm-primary-900);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Main Navigation Bar */
.main-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--bm-header-height);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--bm-primary-900);
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--bm-radius-md);
  background: linear-gradient(135deg, var(--bm-primary-500) 0%, var(--bm-primary-600) 100%);
  color: #FFFFFF;
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

.brand-name {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--bm-primary-900);
}

.brand-sub {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--bm-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Multi-Service Tabs (Scalable Architecture) */
.service-nav-tabs {
  display: none;
  align-items: center;
  gap: 6px;
  background-color: var(--bm-bg-surface-alt);
  padding: 5px;
  border-radius: var(--bm-radius-full);
}

@media (min-width: 992px) {
  .service-nav-tabs {
    display: flex;
  }
}

.service-tab-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bm-text-muted);
  border-radius: var(--bm-radius-full);
  transition: all var(--bm-transition-fast);
  white-space: nowrap;
}

.service-tab-item:hover {
  color: var(--bm-primary-900);
  background-color: rgba(255, 255, 255, 0.6);
}

.service-tab-item.active {
  color: var(--bm-primary-900);
  background-color: var(--bm-bg-surface);
  box-shadow: var(--bm-shadow-xs);
  font-weight: 700;
}

.tab-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--bm-radius-full);
  line-height: 1;
}

.tab-badge.badge-benefit {
  background-color: #FEE2E2;
  color: #DC2626;
}

.tab-badge.badge-new {
  background-color: #E0E7FF;
  color: #4338CA;
}

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

.btn-header-quote {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--bm-primary-500) 0%, var(--bm-primary-600) 100%);
  border-radius: var(--bm-radius-md);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  transition: all var(--bm-transition-fast);
  min-height: 44px;
}

.btn-header-quote:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--bm-radius-md);
  color: var(--bm-primary-900);
  font-size: 1.5rem;
  background-color: var(--bm-bg-surface-alt);
}

@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* ==========================================================================
   Hero Section & Quick Estimator
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
  padding-top: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--bm-border-subtle);
}

@media (min-width: 992px) {
  .hero-section {
    padding-top: 72px;
    padding-bottom: 96px;
  }
}

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

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: #DBEAFE;
  color: var(--bm-primary-600);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--bm-radius-full);
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--bm-text-muted);
  margin-top: 18px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.trust-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background-color: var(--bm-bg-surface);
  border: 1px solid var(--bm-border-subtle);
  border-radius: var(--bm-radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bm-primary-800);
  box-shadow: var(--bm-shadow-xs);
}

.trust-badge-item i {
  color: var(--bm-primary-500);
  font-size: 1.15rem;
}

/* Quick Estimator Card (30-Sec Quote Widget) */
.estimator-card {
  background-color: var(--bm-bg-surface);
  border-radius: var(--bm-radius-xl);
  border: 1px solid var(--bm-border-subtle);
  box-shadow: var(--bm-shadow-float);
  padding: 28px 24px;
  position: relative;
}

@media (min-width: 768px) {
  .estimator-card {
    padding: 36px 32px;
  }
}

.estimator-header {
  margin-bottom: 24px;
}

.estimator-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bm-accent);
  background-color: var(--bm-accent-soft);
  padding: 4px 10px;
  border-radius: var(--bm-radius-full);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.estimator-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--bm-primary-900);
  letter-spacing: -0.02em;
}

.estimator-sub {
  font-size: 0.875rem;
  color: var(--bm-text-muted);
  margin-top: 4px;
}

/* Estimator Form Fields */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bm-primary-800);
  margin-bottom: 8px;
}

/* Service Type Selector Pills */
.type-selector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 480px) {
  .type-selector-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.type-pill-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 8px;
  border: 1.5px solid var(--bm-border-subtle);
  border-radius: var(--bm-radius-md);
  background-color: var(--bm-bg-surface);
  color: var(--bm-text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all var(--bm-transition-fast);
  min-height: 44px;
}

.type-pill-btn i {
  font-size: 1.25rem;
}

.type-pill-btn:hover {
  border-color: var(--bm-primary-400);
  color: var(--bm-primary-500);
}

.type-pill-btn.selected {
  border-color: var(--bm-primary-500);
  background-color: var(--bm-primary-50);
  color: var(--bm-primary-600);
  font-weight: 700;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 14px;
  color: var(--bm-text-muted);
  font-size: 1.15rem;
  pointer-events: none;
}

.form-control {
  width: 100%;
  height: 48px;
  padding: 0 14px 0 42px;
  background-color: var(--bm-bg-surface-alt);
  border: 1px solid var(--bm-border-subtle);
  border-radius: var(--bm-radius-md);
  font-size: 0.9375rem;
  color: var(--bm-text-main);
  transition: all var(--bm-transition-fast);
}

.form-control:focus {
  background-color: var(--bm-bg-surface);
  border-color: var(--bm-primary-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.estimator-result-box {
  background-color: #F8FAFC;
  border: 1px dashed var(--bm-border-medium);
  border-radius: var(--bm-radius-md);
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  margin-bottom: 20px;
}

.est-label {
  font-size: 0.8125rem;
  color: var(--bm-text-muted);
}

.est-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--bm-primary-600);
}

.btn-estimator-submit {
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, var(--bm-accent) 0%, var(--bm-accent-hover) 100%);
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--bm-radius-md);
  box-shadow: 0 6px 20px rgba(255, 91, 34, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--bm-transition-fast);
}

.btn-estimator-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 91, 34, 0.4);
}

.estimator-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--bm-text-muted);
  margin-top: 12px;
}

/* ==========================================================================
   Section: 3 Core Guarantees (3대 안심보증)
   ========================================================================== */
.guarantee-section {
  padding: 80px 0;
  background-color: var(--bm-bg-surface);
  border-bottom: 1px solid var(--bm-border-subtle);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .guarantee-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.guarantee-card {
  background-color: var(--bm-bg-canvas);
  border: 1px solid var(--bm-border-subtle);
  border-radius: var(--bm-radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--bm-transition-base);
  position: relative;
  overflow: hidden;
}

.guarantee-card:hover {
  transform: translateY(-4px);
  border-color: var(--bm-primary-400);
  box-shadow: var(--bm-shadow-lg);
  background-color: var(--bm-bg-surface);
}

.guarantee-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: var(--bm-radius-full);
  background-color: var(--bm-primary-100);
  color: var(--bm-primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.guarantee-card:nth-child(2) .guarantee-icon-wrap {
  background-color: #D1FAE5;
  color: #059669;
}

.guarantee-card:nth-child(3) .guarantee-icon-wrap {
  background-color: #FEF3C7;
  color: #D97706;
}

.guarantee-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bm-primary-900);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.guarantee-desc {
  font-size: 0.9375rem;
  color: var(--bm-text-muted);
  line-height: 1.6;
}

.guarantee-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  background-color: #FFFFFF;
  border: 1px solid var(--bm-border-medium);
  border-radius: var(--bm-radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bm-primary-700);
}

/* ==========================================================================
   Section: 4 Moving Services + Lifestyle Extension Preview
   ========================================================================== */
.services-section {
  padding: 96px 0;
  background-color: var(--bm-bg-canvas);
}

.services-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--bm-radius-full);
  background-color: var(--bm-bg-surface);
  border: 1px solid var(--bm-border-subtle);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bm-text-muted);
  transition: all var(--bm-transition-fast);
  min-height: 44px;
}

.filter-btn.active {
  background-color: var(--bm-primary-900);
  color: #FFFFFF;
  border-color: var(--bm-primary-900);
  font-weight: 700;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

@media (min-width: 1024px) {
  .service-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background-color: var(--bm-bg-surface);
  border: 1px solid var(--bm-border-subtle);
  border-radius: var(--bm-radius-lg);
  overflow: hidden;
  box-shadow: var(--bm-shadow-xs);
  transition: all var(--bm-transition-base);
  display: flex;
  flex-direction: column;
}

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

.card-media {
  position: relative;
  height: 180px;
  background-color: #CBD5E1;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-media img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--bm-radius-sm);
}

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

.card-service-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bm-primary-900);
  margin-bottom: 8px;
}

.card-service-desc {
  font-size: 0.875rem;
  color: var(--bm-text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.feature-checklist {
  list-style: none;
  border-top: 1px solid var(--bm-border-subtle);
  padding-top: 14px;
  margin-bottom: 20px;
}

.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--bm-primary-800);
  margin-bottom: 6px;
}

.feature-checklist li i {
  color: var(--bm-primary-500);
  font-size: 1rem;
}

.btn-card-quote {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: var(--bm-primary-50);
  color: var(--bm-primary-600);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--bm-radius-md);
  transition: all var(--bm-transition-fast);
}

.service-card:hover .btn-card-quote {
  background-color: var(--bm-primary-500);
  color: #FFFFFF;
}

/* Lifestyle Bundle Extension Banner */
.lifestyle-banner-card {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--bm-primary-900) 0%, #1E3A8A 100%);
  border-radius: var(--bm-radius-xl);
  padding: 40px 32px;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--bm-shadow-xl);
}

@media (min-width: 992px) {
  .lifestyle-banner-card {
    grid-template-columns: 1.3fr 0.7fr;
    padding: 48px;
  }
}

.lifestyle-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #93C5FD;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: var(--bm-radius-full);
  margin-bottom: 12px;
}

.lifestyle-title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}

.lifestyle-desc {
  font-size: 1rem;
  color: #CBD5E1;
  line-height: 1.6;
  max-width: 50ch;
}

.lifestyle-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.lifestyle-chip {
  padding: 6px 14px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: var(--bm-radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
}

.lifestyle-action-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-lifestyle-consult {
  height: 52px;
  background-color: #FFFFFF;
  color: var(--bm-primary-900);
  font-weight: 800;
  font-size: 1rem;
  border-radius: var(--bm-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: all var(--bm-transition-fast);
}

.btn-lifestyle-consult:hover {
  background-color: #F8FAFC;
  transform: translateY(-2px);
}

/* ==========================================================================
   Section: 5-Step Transparent Moving Process
   ========================================================================== */
.process-section {
  padding: 96px 0;
  background-color: var(--bm-bg-surface);
  border-top: 1px solid var(--bm-border-subtle);
  border-bottom: 1px solid var(--bm-border-subtle);
}

.process-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 56px;
  position: relative;
}

@media (min-width: 768px) {
  .process-steps-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
}

.step-card {
  background-color: var(--bm-bg-canvas);
  border: 1px solid var(--bm-border-subtle);
  border-radius: var(--bm-radius-lg);
  padding: 24px 18px;
  text-align: center;
  position: relative;
  transition: all var(--bm-transition-base);
}

.step-card:hover {
  transform: translateY(-4px);
  background-color: var(--bm-bg-surface);
  border-color: var(--bm-primary-500);
  box-shadow: var(--bm-shadow-md);
}

.step-num {
  position: absolute;
  top: 12px;
  left: 14px;
  font-family: var(--bm-font-display);
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--bm-primary-500);
  background-color: var(--bm-primary-50);
  width: 26px;
  height: 26px;
  border-radius: var(--bm-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  font-size: 2rem;
  color: var(--bm-primary-600);
  margin-top: 14px;
  margin-bottom: 16px;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bm-primary-900);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.8125rem;
  color: var(--bm-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Section: Transparent Cost Standards (투명 가격 가이드)
   ========================================================================== */
.pricing-section {
  padding: 96px 0;
  background-color: var(--bm-bg-canvas);
}

.pricing-table-wrap {
  margin-top: 48px;
  background-color: var(--bm-bg-surface);
  border-radius: var(--bm-radius-xl);
  border: 1px solid var(--bm-border-subtle);
  overflow-x: auto;
  box-shadow: var(--bm-shadow-sm);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.pricing-table th, .pricing-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--bm-border-subtle);
}

.pricing-table th {
  background-color: #F8FAFC;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bm-primary-800);
}

.pricing-table td {
  font-size: 0.9375rem;
  color: var(--bm-text-main);
}

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

.type-title-cell {
  font-weight: 700;
  color: var(--bm-primary-900);
}

.price-val {
  font-weight: 800;
  color: var(--bm-primary-600);
  font-size: 1.1rem;
}

.pricing-footnote-box {
  margin-top: 24px;
  padding: 16px 20px;
  background-color: #EFF6FF;
  border-radius: var(--bm-radius-md);
  font-size: 0.8125rem;
  color: #1E40AF;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* ==========================================================================
   Section: Verified Reviews & Proof
   ========================================================================== */
.reviews-section {
  padding: 96px 0;
  background-color: var(--bm-bg-surface);
  border-top: 1px solid var(--bm-border-subtle);
}

.review-stats-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  margin-bottom: 48px;
  padding: 24px;
  background-color: var(--bm-bg-canvas);
  border-radius: var(--bm-radius-xl);
  border: 1px solid var(--bm-border-subtle);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--bm-primary-900);
  font-family: var(--bm-font-display);
}

.stat-num span {
  color: var(--bm-accent);
}

.stat-lbl {
  font-size: 0.8125rem;
  color: var(--bm-text-muted);
  margin-top: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background-color: var(--bm-bg-surface);
  border: 1px solid var(--bm-border-subtle);
  border-radius: var(--bm-radius-lg);
  padding: 24px;
  box-shadow: var(--bm-shadow-xs);
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.star-rating {
  color: #F59E0B;
  display: flex;
  gap: 2px;
  font-size: 0.9375rem;
}

.reviewer-meta {
  font-size: 0.8125rem;
  color: var(--bm-text-muted);
}

.review-text {
  font-size: 0.9375rem;
  color: var(--bm-text-main);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.review-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bm-primary-600);
  background-color: var(--bm-primary-50);
  padding: 4px 8px;
  border-radius: var(--bm-radius-sm);
  align-self: flex-start;
}

/* ==========================================================================
   Section: FAQ
   ========================================================================== */
.faq-section {
  padding: 96px 0;
  background-color: var(--bm-bg-canvas);
  border-top: 1px solid var(--bm-border-subtle);
}

.faq-container {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  background-color: var(--bm-bg-surface);
  border: 1px solid var(--bm-border-subtle);
  border-radius: var(--bm-radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--bm-transition-fast);
}

.faq-item.open {
  border-color: var(--bm-primary-400);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bm-primary-900);
  min-height: 44px;
}

.faq-question i {
  font-size: 1.25rem;
  color: var(--bm-text-muted);
  transition: transform var(--bm-transition-fast);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
  color: var(--bm-primary-500);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--bm-text-muted);
  line-height: 1.7;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ==========================================================================
   Section: Bottom CTA & Conversion Closer
   ========================================================================== */
.bottom-cta-section {
  background: linear-gradient(135deg, var(--bm-primary-900) 0%, var(--bm-primary-800) 100%);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.bottom-cta-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.bottom-cta-desc {
  font-size: 1.05rem;
  color: #94A3B8;
  max-width: 50ch;
  margin: 0 auto 32px;
}

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

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--bm-accent) 0%, var(--bm-accent-hover) 100%);
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: var(--bm-radius-md);
  box-shadow: 0 6px 20px rgba(255, 91, 34, 0.4);
  min-height: 48px;
  transition: all var(--bm-transition-fast);
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 91, 34, 0.5);
}

.btn-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--bm-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 48px;
  transition: all var(--bm-transition-fast);
}

.btn-cta-phone:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #0B1120;
  color: #94A3B8;
  padding: 64px 0 40px;
  font-size: 0.875rem;
  border-top: 1px solid #1E293B;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1E293B;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-corp-info {
  line-height: 1.8;
  font-size: 0.8125rem;
}

.footer-links-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}

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

.footer-nav-list a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  font-size: 0.75rem;
  color: #64748B;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-legal-links {
  display: flex;
  gap: 16px;
}

.footer-legal-links a:hover {
  color: #94A3B8;
}

/* ==========================================================================
   Mobile Sticky Bottom Conversion Bar (44px+ Accessible Targets)
   ========================================================================== */
.mobile-sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--bm-border-subtle);
  padding: 10px 16px;
  display: flex;
  gap: 10px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

@media (min-width: 1025px) {
  .mobile-sticky-cta-bar {
    display: none;
  }
}

.mobile-cta-phone {
  flex: 1;
  height: 48px;
  background-color: var(--bm-bg-surface-alt);
  border: 1px solid var(--bm-border-subtle);
  border-radius: var(--bm-radius-md);
  color: var(--bm-primary-900);
  font-weight: 700;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mobile-cta-quote {
  flex: 2;
  height: 48px;
  background: linear-gradient(135deg, var(--bm-accent) 0%, var(--bm-accent-hover) 100%);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.9375rem;
  border-radius: var(--bm-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(255, 91, 34, 0.35);
}
