/* ================================
   Unified Contact Modal (UCM)
   ================================ */

/* Base Modal Styles */
.ucm {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ucm.is-open {
  opacity: 1;
  visibility: visible;
}

.ucm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.ucm-container {
  position: relative;
  width: 100%;
  max-width: 920px;
  max-height: 90vh;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 24px 48px -12px rgba(0, 0, 0, 0.35),
    0 0 80px rgba(0, 0, 0, 0.12);
}

.ucm.is-open .ucm-container {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Close Button - Top right, on the content area */
.ucm-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 100;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}

.ucm-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.ucm-close svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

/* ================================
   Main Layout - Sidebar + Content
   ================================ */
.ucm-layout {
  display: flex;
  height: 100%;
  max-height: 85vh;
}

/* ================================
   Left Sidebar Navigation
   ================================ */
.ucm-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 28px 16px;
}

.ucm-sidebar-header {
  margin-bottom: 24px;
  padding: 0 8px 20px;
  border-bottom: 1px solid #eee;
}

.ucm-sidebar-title {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.ucm-sidebar-subtitle {
  display: block;
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

/* ================================
   Sidebar Navigation Groups
   ================================ */
.ucm-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ucm-nav-group-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 10px 8px;
}

.ucm-nav--primary {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}

.ucm-nav--secondary {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Primary Actions Styling */
.ucm-nav--primary .ucm-nav-item {
  padding: 14px 12px;
}

.ucm-nav--primary .ucm-nav-label {
  font-size: 15px;
  font-weight: 600;
}

/* Secondary Actions Styling */
.ucm-nav--secondary {
  gap: 0;
}

.ucm-nav--secondary .ucm-nav-item {
  padding: 10px 16px;
}

.ucm-nav--secondary .ucm-nav-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: transparent;
}

.ucm-nav--secondary .ucm-nav-icon svg {
  width: 16px;
  height: 16px;
}

.ucm-nav--secondary .ucm-nav-label {
  font-size: 13px;
  font-weight: 500;
  color: #666;
}

.ucm-nav--secondary .ucm-nav-item:hover .ucm-nav-label {
  color: #333;
}

.ucm-nav--secondary .ucm-nav-item.active .ucm-nav-label {
  color: #fff;
}

.ucm-nav--secondary .ucm-nav-desc {
  display: none; /* Hide description for secondary items */
}

/* Smaller arrow for secondary items */
.ucm-nav--secondary .ucm-nav-item.active::after {
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 10px;
  border-left-color: #23282a;
}

.ucm-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  margin: 0 -16px;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
  position: relative;
}

.ucm-nav-item:hover {
  background: #f0f0f0;
}

.ucm-nav-item.active {
  background: #23282a;
}

/* Arrow indicator pointing to content */
.ucm-nav-item.active::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid #23282a;
  z-index: 10;
}

/* Nav Icon */
.ucm-nav-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f0f0f0;
  color: #666;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.ucm-nav-item:hover .ucm-nav-icon {
  background: #e8e8e8;
  color: #333;
}

.ucm-nav-item.active .ucm-nav-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* All active items use white icon on green background */
.ucm-nav-item.active[data-ucm-tab="home-demo"] .ucm-nav-icon { color: #fff; }
.ucm-nav-item.active[data-ucm-tab="virtual-demo"] .ucm-nav-icon { color: #fff; }
.ucm-nav-item.active[data-ucm-tab="call-us"] .ucm-nav-icon { color: #fff; }
.ucm-nav-item.active[data-ucm-tab="contact"] .ucm-nav-icon { color: #fff; }

.ucm-nav-icon svg {
  width: 18px;
  height: 18px;
}

/* Nav Content */
.ucm-nav-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.ucm-nav-label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: color 0.2s ease;
  line-height: 1.3;
}

.ucm-nav-item:hover .ucm-nav-label {
  color: #1a1a1a;
}

.ucm-nav-item.active .ucm-nav-label {
  color: #fff;
  font-weight: 600;
}

.ucm-nav-desc {
  font-size: 12px;
  color: #888;
  transition: color 0.2s ease;
  line-height: 1.3;
}

.ucm-nav-item:hover .ucm-nav-desc {
  color: #666;
}

.ucm-nav-item.active .ucm-nav-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* Sidebar Footer */
.ucm-sidebar-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e5e5e5;
}

.ucm-sidebar-phone-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.ucm-sidebar-phone {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ucm-sidebar-phone:hover {
  color: #00ac46;
}

/* ================================
   Content Area
   ================================ */
.ucm-content {
  flex: 1;
  min-width: 0;
  background: #fff;
  overflow: hidden;
  position: relative;
}

/* Hide old header tabs */
.ucm-tabs {
  display: none;
}

/* ================================
   Tab Panels Container
   ================================ */
.ucm-panels {
  height: 100%;
  overflow: hidden;
}

/* ================================
   Panel Header Banner
   ================================ */
.ucm-panel {
  display: none;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.ucm-panel.active {
  display: flex;
}

.ucm-panel-header {
  position: relative;
  flex-shrink: 0;
  height: 220px;
  overflow: hidden;
}

.ucm-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Video background specific styles */
.ucm-header-video {
  object-position: center center;
}

.ucm-header-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, #23282a 0%, rgba(35, 40, 42, 0.85) 15%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

/* Stronger gradient for hero headers with CTA - seamless transition to content bg */
.ucm-panel-header--hero .ucm-header-overlay {
  background: linear-gradient(to top, #23282a 0%, rgba(35, 40, 42, 0.9) 20%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
}

/* Fallback dark background when no image */
.ucm-panel-header {
  background: #1a1a1a;
}

.ucm-header-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 32px;
  color: #fff;
}

/* Header label - hidden by default */
.ucm-header-label {
  display: none;
}

.ucm-header-title {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.ucm-header-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
  max-width: 500px;
  font-weight: 400;
}

/* Hero Header (with video/image) */
.ucm-panel-header--hero {
  height: 280px;
}

.ucm-panel-header--hero .ucm-header-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 40px;
}

.ucm-panel-header--hero .ucm-header-subtitle {
  margin-bottom: 0;
}

/* Header CTA Area */
.ucm-header-cta {
  width: 100%;
  max-width: 460px;
}

.ucm-header-zip-wrapper {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 6px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ucm-header-zip-input-container {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.ucm-header-zip-input-container svg {
  position: absolute;
  left: 14px;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.ucm-header-zip-input {
  width: 100%;
  height: 44px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 15px;
  padding: 0 16px 0 44px;
  outline: none;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.ucm-header-zip-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.ucm-header-zip-input:focus {
  background: rgba(255, 255, 255, 0.1);
}

.ucm-header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  background: #fff;
  color: #1a1a1a;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ucm-header-cta-btn:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.ucm-header-cta-btn--full {
  width: 100%;
  justify-content: center;
  height: 48px;
  font-size: 15px;
}

.ucm-header-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

/* Shrink header when on Step 2+ */
.ucm-panel-header--step-active.ucm-panel-header--hero {
  height: 220px;
}

.ucm-panel-header--step-active .ucm-header-content {
  padding-top: 60px; /* Extra top padding to clear back button */
}

.ucm-panel-header--step-active .ucm-header-subtitle {
  margin-bottom: 0;
}

/* Header Back Button */
.ucm-header-back {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-10px);
}

.ucm-header-back.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.ucm-header-back:hover {
  background: rgba(255, 255, 255, 0.25);
}

.ucm-header-back svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

/* ================================
   Panel Body Content
   ================================ */
.ucm-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

/* Legacy support - hide old split layout */
.ucm-panel-split {
  display: none;
}

.ucm-panel-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ucm-panel-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0.95;
}

.ucm-panel-feature svg {
  flex-shrink: 0;
}

.ucm-panel-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 24px 0;
}

.ucm-panel-alt-contact {
  margin-top: auto;
}

.ucm-panel-alt-label {
  font-size: 12px;
  opacity: 0.7;
  margin: 0 0 4px;
}

.ucm-panel-phone {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.ucm-panel-phone:hover {
  opacity: 0.8;
}

/* Testimonial Card (Virtual Demo) */
.ucm-testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(8px);
  margin-top: 24px;
}

.ucm-testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

.ucm-badge-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.ucm-testimonial-quote {
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  opacity: 0.95;
}

/* Right Panel (Form/Content) */
.ucm-panel-right {
  flex: 1;
  overflow-y: auto;
  background: #fff;
}

/* ================================
   Steps
   ================================ */
.ucm-step {
  display: none;
  height: 100%;
}

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

.ucm-step-content {
  padding: 32px;
  max-width: 100%;
  background: #23282a;
}

@media (min-width: 768px) {
  .ucm-step-content {
    padding: 40px;
  }
}

.ucm-step-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.ucm-step-label--green { background: rgba(0, 172, 70, 0.1); color: #00ac46; }
.ucm-step-label--blue { background: rgba(0, 172, 70, 0.1); color: #00ac46; }
.ucm-step-label--orange { background: rgba(0, 172, 70, 0.1); color: #00ac46; }
.ucm-step-label--purple { background: rgba(0, 172, 70, 0.1); color: #00ac46; }

.ucm-step-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .ucm-step-title {
    font-size: 28px;
  }
}

.ucm-step-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 24px;
  line-height: 1.6;
}

/* Back Button */
.ucm-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  margin-bottom: 20px;
  padding: 0;
  transition: opacity 0.2s ease;
}

.ucm-back-btn--green { color: #00ac46; }
.ucm-back-btn--blue { color: #00ac46; }
.ucm-back-btn--orange { color: #00ac46; }
.ucm-back-btn--purple { color: #00ac46; }

.ucm-back-btn:hover {
  opacity: 0.7;
}

/* ================================
   Features Grid
   ================================ */
.ucm-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  margin-bottom: 0;
}

.ucm-feature-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ucm-feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ucm-feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  background: rgba(0, 172, 70, 0.08);
  border-radius: 50%;
  flex-shrink: 0;
  color: #00ac46;
}

.ucm-feature-icon--green { background: rgba(0, 172, 70, 0.08); color: #00ac46; }
.ucm-feature-icon--blue { background: rgba(0, 172, 70, 0.08); color: #00ac46; }
.ucm-feature-icon--orange { background: rgba(0, 172, 70, 0.08); color: #00ac46; }
.ucm-feature-icon--purple { background: rgba(0, 172, 70, 0.08); color: #00ac46; }

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

.ucm-feature-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.ucm-feature-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  padding-left: 52px;
  margin-top: -2px;
}

/* ================================
   CTA Section (Below Features)
   ================================ */
.ucm-cta-section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ucm-cta-input-wrapper {
  display: flex;
  flex-direction: row;
  gap: 12px;
  width: 100%;
}

.ucm-cta-input-container {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}

.ucm-cta-input-container svg {
  position: absolute;
  left: 16px;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.ucm-cta-input {
  width: 100%;
  height: 52px;
  padding: 0 16px 0 48px;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  outline: none;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.ucm-cta-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.ucm-cta-input:focus {
  border-color: #00ac46;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 172, 70, 0.2);
}

.ucm-cta-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ================================
   Choice Cards (Virtual Demo Options)
   ================================ */
.ucm-choice-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ucm-choice-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #00ac46;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  width: 100%;
  text-align: left;
}

.ucm-choice-card:hover {
  background: #009a3f;
  transform: translateY(-1px);
}

.ucm-choice-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #fff;
  flex-shrink: 0;
}

.ucm-choice-icon svg {
  width: 24px;
  height: 24px;
}

.ucm-choice-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ucm-choice-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.ucm-choice-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.3;
}

.ucm-choice-badge {
  position: absolute;
  top: -8px;
  right: 16px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  background: #fff;
  color: #00ac46;
  border-radius: 100px;
}

.ucm-choice-arrow {
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.ucm-choice-card:hover .ucm-choice-arrow {
  transform: translateX(4px);
  color: #fff;
}

/* ================================
   Video Gallery
   ================================ */
.ucm-video-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ucm-video-card {
  display: flex;
  gap: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.ucm-video-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.ucm-video-thumb {
  position: relative;
  width: 140px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.ucm-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ucm-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.ucm-video-card:hover .ucm-video-play {
  opacity: 1;
  background: rgba(0, 172, 70, 0.6);
}

.ucm-video-duration {
  position: absolute;
  bottom: 6px;
  right: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  border-radius: 4px;
}

.ucm-video-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.ucm-video-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
}

.ucm-video-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.4;
}

/* Video Offer Section */
.ucm-video-offer {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(0, 172, 70, 0.15) 0%, rgba(0, 172, 70, 0.08) 100%);
  border: 1px solid rgba(0, 172, 70, 0.3);
  border-radius: 16px;
  text-align: center;
}

.ucm-video-offer--compact {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  margin-top: 24px;
  text-align: left;
}

.ucm-offer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ucm-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #00ac46;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
  width: fit-content;
}

.ucm-offer-badge svg {
  width: 12px;
  height: 12px;
}

.ucm-offer-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
}

.ucm-offer-text strong {
  color: #fff;
  font-weight: 600;
}

.ucm-offer-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}

.ucm-offer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 20px;
  line-height: 1.5;
}

.ucm-video-offer--compact .ucm-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.ucm-btn--large {
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 500px) {
  .ucm-video-offer--compact {
    flex-direction: column;
    text-align: center;
  }
  
  .ucm-offer-content {
    align-items: center;
  }
  
  .ucm-video-offer--compact .ucm-btn {
    width: 100%;
  }
}

.ucm-video-cta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.ucm-video-cta--secondary {
  margin-top: 20px;
  padding-top: 20px;
}

.ucm-video-cta-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 12px;
}

.ucm-btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

.ucm-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.ucm-video-email-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(0, 172, 70, 0.15);
  border-radius: 10px;
  margin-top: 20px;
}

.ucm-video-email-note svg {
  color: #00ac46;
  flex-shrink: 0;
}

.ucm-video-email-note span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* Outline Button Variant */
.ucm-btn--outline {
  background: transparent;
  border: 1px solid currentColor;
}

.ucm-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Section Headline for Features */
.ucm-section-headline {
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 20px;
  padding-bottom: 0;
  border-bottom: none;
}

/* ================================
   Buttons
   ================================ */
.ucm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.ucm-btn--full {
  width: 100%;
}

.ucm-btn--green {
  background: #00ac46;
  color: #fff;
}
.ucm-btn--green:hover { background: #009a3f; }
.ucm-btn--green:disabled { background: #ccc; cursor: not-allowed; }

.ucm-btn--blue {
  background: #00ac46;
  color: #fff;
}
.ucm-btn--blue:hover { background: #009a3f; }
.ucm-btn--blue:disabled { background: #ccc; cursor: not-allowed; }

.ucm-btn--orange {
  background: #00ac46;
  color: #fff;
}
.ucm-btn--orange:hover { background: #009a3f; }

.ucm-btn--purple {
  background: #00ac46;
  color: #fff;
}
.ucm-btn--purple:hover { background: #009a3f; }

/* ================================
   Consultant Card
   ================================ */
.ucm-consultant-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f8f8f8;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}

.ucm-consultant-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00ac46;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50%;
  flex-shrink: 0;
}

.ucm-consultant-info {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.ucm-consultant-info strong {
  color: #1a1a1a;
}

/* ================================
   Preference Selectors
   ================================ */
.ucm-preference-section {
  margin-bottom: 28px;
}

.ucm-preference-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.ucm-preference-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 600px) {
  .ucm-preference-options {
    grid-template-columns: 1fr;
  }
}

.ucm-preference-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.ucm-preference-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.ucm-preference-btn.selected {
  border-color: #00ac46;
  background: rgba(0, 172, 70, 0.15);
}

.ucm-preference-btn.selected svg {
  color: #00ac46;
}

.ucm-preference-btn svg {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.ucm-preference-btn span {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.ucm-preference-btn small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

/* Purple variant for virtual demo */
[data-panel="virtual-demo"] .ucm-preference-btn.selected {
  border-color: #00ac46;
  background: rgba(0, 172, 70, 0.15);
}

[data-panel="virtual-demo"] .ucm-preference-btn.selected svg {
  color: #00ac46;
}

[data-panel="virtual-demo"] .ucm-preference-btn--featured:hover {
  border-color: #00ac46;
}

[data-panel="virtual-demo"] .ucm-preference-btn--featured.selected {
  border-color: #00ac46;
  background: rgba(0, 172, 70, 0.2);
}

/* Featured ASAP Button */
.ucm-preference-btn--featured {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(0, 172, 70, 0.1);
  border-color: rgba(0, 172, 70, 0.25);
  width: 100%;
  text-align: left;
}

.ucm-preference-btn--featured:hover {
  background: rgba(0, 172, 70, 0.18);
  border-color: #00ac46;
}

.ucm-preference-btn--featured.selected {
  border-color: #00ac46;
  background: rgba(0, 172, 70, 0.25);
}

.ucm-pref-featured-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ucm-pref-featured-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.ucm-pref-featured-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

/* Divider */
.ucm-preference-divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
  gap: 16px;
}

.ucm-preference-divider::before,
.ucm-preference-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.ucm-preference-divider span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Stack Layout */
.ucm-preference-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ucm-preference-options--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Pill Buttons */
.ucm-preference-btn--pill {
  flex-direction: row;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  gap: 0;
  flex: 0 0 auto; /* Don't stretch */
  min-width: 90px;
  justify-content: center;
}

.ucm-preference-btn--pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.ucm-preference-btn--pill.selected {
  background: #00ac46;
  border-color: #00ac46;
  color: #fff;
}

.ucm-preference-btn--pill span {
  font-size: 13px;
  font-weight: 500;
  color: inherit; /* Take color from button */
}

.ucm-preference-btn--pill small,
.ucm-preference-btn--pill svg {
  display: none;
}

/* Virtual Demo Pill Variant */
[data-panel="virtual-demo"] .ucm-preference-btn--pill.selected {
  background: #00ac46;
  border-color: #00ac46;
  color: #fff;
}

/* Featured ASAP Button Refinement */
.ucm-preference-btn--featured {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(0, 172, 70, 0.1);
  border: 1px solid rgba(0, 172, 70, 0.25);
  border-radius: 14px;
  width: 100%;
  text-align: left;
}

.ucm-preference-btn--featured:hover {
  background: rgba(0, 172, 70, 0.18);
  border-color: #00ac46;
}

.ucm-preference-btn--featured.selected {
  background: #00ac46;
  border-color: #00ac46;
}

.ucm-preference-btn--featured.selected .ucm-pref-featured-title,
.ucm-preference-btn--featured.selected .ucm-pref-featured-desc,
.ucm-preference-btn--featured.selected svg {
  color: #fff;
}

[data-panel="virtual-demo"] .ucm-preference-btn--featured {
  background: rgba(0, 172, 70, 0.1);
  border-color: rgba(0, 172, 70, 0.25);
}

[data-panel="virtual-demo"] .ucm-preference-btn--featured:hover {
  background: rgba(0, 172, 70, 0.18);
  border-color: #00ac46;
}

[data-panel="virtual-demo"] .ucm-preference-btn--featured.selected {
  background: #00ac46;
  border-color: #00ac46;
}

/* ================================
   Calendar
   ================================ */
.ucm-calendar {
  margin-bottom: 24px;
}

.ucm-calendar--bordered {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
}

.ucm-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.ucm-calendar-month {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.ucm-calendar-nav {
  display: flex;
  gap: 8px;
}

.ucm-calendar-nav-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #666;
  transition: all 0.2s ease;
}

.ucm-calendar-nav-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.ucm-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.ucm-calendar-weekdays span {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  padding: 8px 0;
}

.ucm-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.ucm-calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
  color: #fff;
  transition: all 0.15s ease;
}

.ucm-calendar-day:hover:not(:disabled):not(.is-selected) {
  background: rgba(255, 255, 255, 0.1);
}

.ucm-calendar-day:disabled {
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}

.ucm-calendar-day.is-today {
  font-weight: 700;
}

.ucm-calendar-day.is-selected {
  background: #00ac46;
  color: #fff;
}

.ucm-calendar-day.is-selected--blue {
  background: #00ac46;
}

/* ================================
   Forms
   ================================ */
.ucm-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

@media (max-width: 480px) {
  .ucm-form-row {
    grid-template-columns: 1fr;
  }
}

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

.ucm-form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.ucm-form-optional {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-transform: none;
}

.ucm-form-input {
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

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

.ucm-form-input:focus {
  border-color: #00ac46;
  box-shadow: 0 0 0 3px rgba(0, 172, 70, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.ucm-form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.ucm-form-textarea {
  resize: vertical;
  min-height: 80px;
}

.ucm-form-terms {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 8px;
}

.ucm-form-terms a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

/* ================================
   Call Us Panel
   ================================ */
.ucm-call-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ucm-phone-display {
  text-align: left;
  margin: 24px 0 28px;
}

.ucm-phone-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .ucm-phone-number {
    font-size: 40px;
  }
}

.ucm-phone-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ucm-call-hours {
  width: 100%;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ucm-call-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.ucm-call-hours-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ucm-call-hours-day {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.ucm-call-hours-time {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* ================================
   Success State
   ================================ */
.ucm-step-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.ucm-success-icon {
  margin-bottom: 24px;
}

.ucm-success-icon--green { color: #00ac46; }
.ucm-success-icon--blue { color: #00ac46; }
.ucm-success-icon--purple { color: #00ac46; }

.ucm-step-success .ucm-step-title {
  font-size: 28px;
}

.ucm-step-success .ucm-step-desc {
  max-width: 320px;
}

/* ================================
   Mobile Responsive
   ================================ */
/* ================================
   Tablet - Sidebar becomes narrower
   ================================ */
@media (max-width: 900px) {
  .ucm-sidebar {
    width: 240px;
    padding: 24px 16px;
  }
  
  .ucm-nav-item {
    padding: 12px 14px;
    gap: 12px;
  }
  
  .ucm-nav-icon {
    width: 36px;
    height: 36px;
  }
  
  .ucm-nav-label {
    font-size: 13px;
  }
  
  .ucm-nav-desc {
    display: none;
  }
}

/* ================================
   Mobile - Hide sidebar, full content
   ================================ */
@media (max-width: 767px) {
  .ucm-container {
    max-height: 95vh;
    border-radius: 16px;
  }
  
  .ucm-layout {
    flex-direction: column;
  }
  
  /* Hide sidebar completely on mobile */
  .ucm-sidebar {
    display: none;
  }
  
  /* Remove the arrow indicator on mobile */
  .ucm-nav-item.active::after {
    display: none;
  }
  
  .ucm-content {
    flex: 1;
    overflow-y: auto;
    border-radius: 16px;
  }
  
  .ucm-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.4);
  }
  
  .ucm-panel-right {
    width: 100%;
  }
  
  .ucm-step-content {
    padding: 24px 20px;
  }
  
  .ucm-step-title {
    font-size: 22px;
  }
  
  .ucm-features-grid {
    gap: 12px;
  }
  
  .ucm-feature-icon {
    width: 36px;
    height: 36px;
  }
  
  .ucm-phone-number {
    font-size: 28px;
  }
}

/* ================================
   Small mobile adjustments
   ================================ */
@media (max-width: 420px) {
  .ucm-step-content {
    padding: 20px 16px;
  }
  
  .ucm-header-title {
    font-size: 28px;
  }
  
  .ucm-header-subtitle {
    font-size: 14px;
  }
  
  .ucm-panel-header--hero {
    min-height: 200px;
  }
  
  .ucm-features-grid {
    gap: 16px;
  }
  
  .ucm-choice-card {
    padding: 16px 20px;
  }
}

/* Body scroll lock when modal is open */
body.ucm-open {
  overflow: hidden;
}

