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

:root {
  --bg-primary: #eef4fb;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --accent-blue: #0078e0;
  --accent-blue-dark: #005bb5;
  --accent-green: #10b981;
  --accent-amber: #f59e0b;
  --accent-amber-dark: #b45309;
  --font-family-title: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --clay-shadow-out: 12px 14px 28px rgba(163, 177, 198, 0.35), inset 2px 2px 5px #ffffff, inset -2px -2px 5px rgba(0, 0, 0, 0.04);
  --clay-shadow-in: inset 3px 3px 7px rgba(163, 177, 198, 0.35), inset -3px -3px 7px rgba(255, 255, 255, 0.85);
  --glass-shadow: 0 15px 35px rgba(0, 52, 104, 0.06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

body {
  background-color: var(--bg-primary);
  font-family: var(--font-family-body);
  color: var(--text-primary);
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 1.25rem;
  margin: 0;
  width: 100%;
}

/* ─────────────────────────────────────────────────────────
   PREMIUM ENTRANCE SPLASH SCREEN
───────────────────────────────────────────────────────── */
@keyframes splash-gem-in {
  0%   { opacity: 0; transform: scale(0.35) rotate(-18deg); filter: blur(12px); }
  50%  { opacity: 1; transform: scale(1.12) rotate(4deg); filter: blur(0px); }
  65%  { transform: scale(0.96) rotate(-2deg); }
  80%  { transform: scale(1.04) rotate(1deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); filter: blur(0px); }
}

@keyframes splash-fade-up {
  0%   { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes splash-exit {
  0%   { opacity: 1; transform: scale(1); filter: blur(0px); }
  100% { opacity: 0; transform: scale(1.05); filter: blur(10px); pointer-events: none; }
}

.splash-screen {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%; height: 100dvh;
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #c8ddf8 0%, #ddeeff 40%, #b8cfe8 100%);
  -webkit-user-select: none; user-select: none; touch-action: none;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.splash-screen.exit {
  animation: splash-exit 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  pointer-events: none;
}

.splash-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem;
}

.splash-gem {
  font-size: 5rem; line-height: 1; margin-bottom: 1.25rem;
  opacity: 0;
  animation: splash-gem-in 0.85s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.15s forwards;
  filter: drop-shadow(0 16px 32px rgba(0, 80, 200, 0.22));
}

.splash-title {
  font-family: var(--font-family-title);
  font-size: clamp(1.65rem, 6vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  opacity: 0;
  margin-bottom: 0.5rem;
  animation: splash-fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.82s forwards;
}

.splash-tagline {
  font-size: 0.95rem; font-weight: 600; color: #475569; opacity: 0; margin-bottom: 2.25rem;
  animation: splash-fade-up 0.55s cubic-bezier(0.16, 1, 0.3, 1) 1.05s forwards;
}

.splash-wordmark {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0; color: rgba(71, 85, 105, 0.55);
  animation: splash-fade-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) 1.25s forwards;
}

/* Background Backdrop */
.bg-backdrop {
  position: fixed; inset: 0; z-index: -50;
  background: radial-gradient(circle at 10% 20%, rgba(219, 234, 254, 0.8) 0%, rgba(238, 244, 251, 0.96) 90%);
  pointer-events: none;
}

/* ─────────────────────────────────────────────────────────
   SPACIOUS CENTERED CONTAINER HIERARCHY
───────────────────────────────────────────────────────── */
.main-intake-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.intake-card {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(243, 247, 252, 0.9));
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  border: 1.5px solid rgba(255, 255, 255, 0.98);
  border-radius: 36px;
  box-shadow: 0 28px 60px -12px rgba(0, 100, 210, 0.14), inset 0 2px 4px rgba(255, 255, 255, 0.98);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.intake-card.card-appeared {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.intake-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.biz-logo-group {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.biz-logo-icon {
  font-size: 1.45rem;
}

.progress-track-inline {
  width: 85px;
  height: 8px;
  border-radius: 50px;
  background: rgba(0, 120, 224, 0.12);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #38bdf8, var(--accent-blue));
  border-radius: 50px;
  transition: width 0.35s ease;
}

.step-tracker-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-secondary);
}

/* ─────────────────────────────────────────────────────────
   CENTERED HERO QUESTION HEADINGS
───────────────────────────────────────────────────────── */
.slide-header-center {
  text-align: center;
  margin-bottom: 1.65rem;
}

.question-title {
  font-family: var(--font-family-title);
  font-size: clamp(1.45rem, 5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.25;
}

.hero-question {
  font-size: clamp(1.6rem, 5.5vw, 2rem);
  margin-bottom: 0.45rem;
  text-align: center;
}

.hero-sub {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.45;
  text-align: center;
  max-width: 440px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────
   SLIDES
───────────────────────────────────────────────────────── */
.slides-wrapper {
  position: relative;
  width: 100%;
}

.slide {
  display: none;
  flex-direction: column;
  animation: slideIn 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  width: 100%;
}

.slide.active {
  display: flex;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ─────────────────────────────────────────────────────────
   SPACIOUS CENTERED HERO SERVICE CARD
───────────────────────────────────────────────────────── */
.service-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  align-items: center;
}

.service-select-card {
  width: 100%;
  background: linear-gradient(145deg, #ffffff, #edf5ff);
  border: 1.5px solid rgba(255, 255, 255, 0.98);
  box-shadow: 12px 16px 30px rgba(163, 177, 198, 0.28), inset 2px 2px 4px #ffffff, inset -2px -2px 4px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  transition: all 0.24s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.service-select-card.single-hero-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.25rem 2rem;
  border-radius: 30px;
  gap: 1rem;
  border: 1.5px solid rgba(0, 120, 224, 0.15);
}

.service-select-card.single-hero-card:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 16px 22px 36px rgba(0, 120, 224, 0.2), inset 2px 2px 4px #ffffff;
  border-color: rgba(0, 120, 224, 0.4);
}

.service-select-card.single-hero-card:active {
  transform: scale(0.98);
}

.hero-card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-select-card.single-hero-card .service-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  box-shadow: 0 8px 24px rgba(0, 120, 224, 0.16);
}

.service-select-card.single-hero-card .service-card-title {
  font-size: 1.38rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.service-select-card.single-hero-card .service-card-desc {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 0.35rem;
  line-height: 1.4;
  max-width: 380px;
}

.hero-price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 50px;
  background: #ecfdf5;
  color: #047857;
  border: 1.2px solid #a7f3d0;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.08);
  line-height: 1.3;
  text-align: center;
}

.hero-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--accent-blue);
  background: rgba(0, 120, 224, 0.08);
  padding: 0.65rem 1.35rem;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.service-select-card.single-hero-card:hover .hero-card-action {
  background: var(--accent-blue);
  color: #ffffff;
}

.action-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.service-select-card.single-hero-card:hover .action-arrow {
  transform: translateX(4px);
}

/* ─────────────────────────────────────────────────────────
   FORM FIELDS (ROOMY & COMFORTABLE)
───────────────────────────────────────────────────────── */
.fields-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.field-block {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.optional-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: #94a3b8;
  background: #f1f5f9;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  text-transform: none;
  letter-spacing: 0;
}

.clay-input, .clay-select {
  width: 100%;
  height: 56px;
  min-height: 56px;
  padding: 0 1.25rem;
  border-radius: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.88);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  outline: none;
  box-shadow: inset 2px 2px 6px rgba(163, 177, 198, 0.25), inset -2px -2px 6px rgba(255, 255, 255, 0.85);
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.clay-select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-color: rgba(255, 255, 255, 0.88);
}

.clay-input:focus, .clay-select:focus {
  border-color: var(--accent-blue);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 120, 224, 0.16), inset 2px 2px 4px rgba(0, 0, 0, 0.03);
}

/* Two-column layout for county + date */
.field-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  align-items: flex-end;
}

.field-row-2 > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.field-row-2 .field-label {
  min-height: 2.2rem;
  align-items: flex-end;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

/* ─────────────────────────────────────────────────────────
   TAG OPTIONS (Time Window, Dropoff, Fuel Type)
───────────────────────────────────────────────────────── */
.tags-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  width: 100%;
}

.tags-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  width: 100%;
}

.tag-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.05rem 0.75rem;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #edf5ff);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 8px 10px 22px rgba(163, 177, 198, 0.26), inset 2px 2px 4px #ffffff, inset -2px -2px 4px rgba(0, 0, 0, 0.02);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  text-align: center;
  gap: 0.25rem;
}

.tag-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.tag-option.selected .tag-sub {
  color: rgba(255, 255, 255, 0.85);
}

.tag-option:hover {
  transform: translateY(-2px);
  box-shadow: 10px 14px 26px rgba(0, 120, 224, 0.18), inset 2px 2px 4px #ffffff;
  border-color: rgba(0, 120, 224, 0.35);
}

.tag-option.selected {
  background: linear-gradient(145deg, var(--accent-blue), var(--accent-blue-dark));
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(0, 120, 224, 0.38), inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

/* ─────────────────────────────────────────────────────────
   CALLOUT NOTICE BOXES
───────────────────────────────────────────────────────── */
.info-callout {
  padding: 0.95rem 1.15rem;
  border-radius: 20px;
  margin-top: 0.95rem;
  margin-bottom: 0.95rem;
  font-size: 0.82rem;
  line-height: 1.5;
  font-weight: 600;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.callout-amber {
  background: #fffbeb;
  border: 1.2px solid #fcd34d;
  color: #92400e;
}

.callout-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1.2;
}

/* ─────────────────────────────────────────────────────────
   DATE EXPANDER (Screen 5)
───────────────────────────────────────────────────────── */
.date-expander-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(0, 120, 224, 0.22);
  color: var(--accent-blue);
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.2s ease;
  text-align: center;
}

.date-expander-trigger:hover {
  background: rgba(239, 246, 255, 0.95);
  border-color: rgba(0, 120, 224, 0.45);
}

.expander-chevron {
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
}

.expander-chevron.open {
  transform: rotate(90deg);
}

.date-expander-body {
  display: none;
  flex-direction: column;
  padding: 1.25rem;
  background: rgba(239, 246, 255, 0.7);
  border-radius: 22px;
  border: 1.2px solid rgba(0, 120, 224, 0.18);
  animation: slideIn 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.date-expander-body.open {
  display: flex;
}

.btn-calcom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--accent-blue), var(--accent-blue-dark));
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 120, 224, 0.32), inset 0 2px 3px rgba(255, 255, 255, 0.35);
  transition: all 0.22s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
  box-sizing: border-box;
}

.calcom-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.calcom-label {
  white-space: nowrap;
}

.btn-calcom:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 30px rgba(0, 120, 224, 0.45);
}

.btn-calcom:active {
  transform: scale(0.97);
}

/* ─────────────────────────────────────────────────────────
   SKIP CONTROLS (VEHICLE & PLATE)
───────────────────────────────────────────────────────── */
.skip-action-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.35rem;
  width: 100%;
}

.btn-skip-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(0, 120, 224, 0.07);
  border: 1.5px dashed rgba(0, 120, 224, 0.3);
  color: var(--accent-blue);
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.75rem 1.15rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.btn-skip-pill:hover {
  background: rgba(0, 120, 224, 0.14);
  border-color: var(--accent-blue);
  transform: translateY(-1px);
}

.skip-pill-arrow {
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.btn-skip-pill:hover .skip-pill-arrow {
  transform: translateX(3px);
}

.skip-field-checkbox-row {
  margin-top: 0.45rem;
  display: flex;
  align-items: center;
}

.skip-checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.skip-checkbox-container input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  accent-color: var(--accent-blue);
  cursor: pointer;
}

/* ─────────────────────────────────────────────────────────
   FOOTER NAV BUTTONS
───────────────────────────────────────────────────────── */
.intake-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.85rem;
  gap: 0.85rem;
}

.nav-btn {
  padding: 1rem 1.75rem;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.btn-back {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(145deg, #ffffff, #edf4fc);
  color: var(--text-secondary);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 8px 10px 22px rgba(163, 177, 198, 0.3), inset 2px 2px 4px #ffffff, inset -2px -2px 4px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
}

.btn-back:hover {
  transform: translateY(-2px) scale(1.05);
  color: var(--accent-blue);
  box-shadow: 10px 14px 26px rgba(0, 120, 224, 0.2), inset 2px 2px 4px #ffffff;
  border-color: rgba(0, 120, 224, 0.35);
}

.btn-back:active {
  transform: scale(0.93);
}

.btn-next {
  background: linear-gradient(145deg, var(--accent-blue), var(--accent-blue-dark));
  color: white;
  margin-left: auto;
  box-shadow: 0 10px 26px rgba(0, 120, 224, 0.35), inset 0 2px 3px rgba(255, 255, 255, 0.4);
}

.btn-next:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 30px rgba(0, 120, 224, 0.45);
}

.btn-next:active {
  transform: scale(0.97);
}

.btn-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ─────────────────────────────────────────────────────────
   REVIEW SCREEN
───────────────────────────────────────────────────────── */
.review-summary-card {
  background: #ffffff;
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  padding: 1.35rem 1.3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
  margin-bottom: 1.35rem;
}

.review-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f1f5f9;
}

.review-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.review-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.review-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: right;
  word-break: break-word;
}

.sms-action-container {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  width: 100%;
}

.btn-send-sms {
  width: 100%;
  padding: 1.2rem;
  border-radius: 26px;
  border: none;
  background: linear-gradient(145deg, #10b981, #059669);
  color: #ffffff;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.38), inset 0 2px 3px rgba(255, 255, 255, 0.4);
  transition: all 0.22s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
}

.btn-send-sms:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 32px rgba(16, 185, 129, 0.48);
}

.btn-send-sms:active {
  transform: scale(0.97);
}

.sms-hint {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  max-width: 360px;
}

/* ─────────────────────────────────────────────────────────
   PENDING SMS CONFIRMATION (Screen 7)
───────────────────────────────────────────────────────── */
.pending-sms-ring {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(145deg, #3b82f6, #1d4ed8);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2.4rem;
  box-shadow: 0 14px 32px rgba(59, 130, 246, 0.38), inset 0 2px 3px rgba(255, 255, 255, 0.4);
}

.status-badge-pending {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 1.05rem;
  border-radius: 50px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  color: #92400e;
  font-size: 0.78rem;
  font-weight: 800;
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
  70%  { transform: scale(1); box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.btn-resend-sms {
  width: 100%;
  padding: 1.05rem;
  border-radius: 22px;
  border: none;
  background: linear-gradient(145deg, #10b981, #059669);
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.35), inset 0 2px 3px rgba(255, 255, 255, 0.4);
  transition: all 0.22s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.35rem;
  text-decoration: none;
}

.btn-resend-sms:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16, 185, 129, 0.45);
}

.btn-resend-sms:active {
  transform: scale(0.97);
}

.pending-checklist-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 22px;
  padding: 1.1rem 1.2rem;
  margin-bottom: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.check-step-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.check-step-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}

.check-step-badge.done   { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }
.check-step-badge.active { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }

.check-step-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.check-step-text strong {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
}

.check-step-text span {
  font-size: 0.76rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.step-check-icon {
  font-size: 0.9rem;
  font-weight: 900;
  color: #059669;
}

.step-check-icon.pending {
  color: #2563eb;
  font-size: 1rem;
  animation: nudge-arrow 1.5s infinite;
}

@keyframes nudge-arrow {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(3px); }
}

.reference-pass-box {
  background: #f8fafc;
  border: 1.2px solid #e2e8f0;
  border-radius: 22px;
  padding: 1.15rem 1.25rem;
  text-align: left;
}

/* ─────────────────────────────────────────────────────────
   POWERED BADGE
───────────────────────────────────────────────────────── */
.powered-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  font-size: 0.76rem;
  color: var(--text-secondary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.powered-badge strong {
  color: var(--text-primary);
  font-weight: 800;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE (MOBILE & TABLET VIEWPORT SIZING)
───────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  body {
    padding: 1rem 0.75rem;
  }
  .main-intake-wrapper {
    max-width: 100%;
  }
  .intake-card {
    padding: 2rem 1.35rem;
    border-radius: 30px;
  }
  .service-select-card.single-hero-card {
    padding: 1.75rem 1.25rem;
    border-radius: 26px;
  }
  .service-select-card.single-hero-card .service-card-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  .service-select-card.single-hero-card .service-card-title {
    font-size: 1.25rem;
  }
  .hero-price-badge {
    font-size: 0.8rem;
    padding: 0.55rem 1rem;
  }
  .field-row-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .tags-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .btn-calcom {
    font-size: clamp(0.76rem, 3.5vw, 0.88rem);
    padding: 0.85rem 0.65rem;
    white-space: nowrap;
  }
  .btn-skip-pill {
    font-size: 0.82rem;
    padding: 0.7rem 0.95rem;
  }
}
