/* CONTACT PAGE — original inline CSS */
/* ══════════════════════════════════════════════════════════ */
/* ============================================ */
/* RESET */
/* ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ============================================ */
/* ============================================ */
/* SCROLL PROGRESS                          */
/* ============================================ */
/* ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: var(--z-nav);
  box-shadow: 0 0 6px var(--accent);
}
.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  width: 0%;
  transition: width 0.1s ease;
}

/* ============================================ */
/* ============================================ */
/* BACK TO TOP                              */
/* ============================================ */
/* ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--ease);
  z-index: var(--z-nav);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  border-color: var(--accent);
}

/* ─────────────────────────────────────────── NAV (exactly matching index.html) */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: var(--z-nav);
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -1px;
}
.logo span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}
.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 0.55rem 1.35rem;
  border-radius: var(--r-md);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.15s;
}
.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* ============================================ */
/* CONTAINER */
/* ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================ */
/* ============================================ */
/* PAGE SPLIT                               */
/* ============================================ */
/* ============================================ */
.page-split {
  display: grid;
  grid-template-columns: 45% 55%;
  padding-top: 72px;
  min-height: 100vh;
  align-items: start;
}

/* ============================================ */
/* ============================================ */
/* LEFT PANEL                               */
/* ============================================ */
/* ============================================ */
.left-panel {
  position: sticky;
  top: 72px;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(43, 102, 230, 0.35) transparent;
  padding: 5rem 4rem 5rem 4.5rem;
  background: var(--bg-2);
  border-right: 1px solid var(--border);
}
.left-panel::-webkit-scrollbar {
  width: 5px;
}
.left-panel::-webkit-scrollbar-track {
  background: transparent;
}
.left-panel::-webkit-scrollbar-thumb {
  background: rgba(43, 102, 230, 0.35);
  border-radius: 999px;
}
.left-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(43, 102, 230, 0.6);
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* SUBTLE ATMOSPHERE                        */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.left-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 60% 45% at 15% 25%,
      rgba(43, 102, 230, 0.06) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 40% at 85% 75%,
      rgba(6, 182, 212, 0.04) 0%,
      transparent 65%
    );
}
/* Subtle grid pattern like the main site's code windows */
.left-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black, transparent);
}
.left-inner {
  position: relative;
  z-index: 1;
  max-width: 440px;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* CHRIS IDENTITY                           */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.chris-row {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-bottom: 3rem;
}
.c-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1a3a6e, #2d5fa0);
  border: 2px solid rgba(43, 102, 230, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  box-shadow:
    0 0 0 5px rgba(43, 102, 230, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.45);
  position: relative;
}
.c-avatar::after {
  content: "";
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green);
  border: 2.5px solid var(--bg-2);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.65);
  animation: beat 2s ease-in-out infinite;
}
@keyframes beat {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.7);
  }
}
.c-meta {
  /* ============================================ */
  /* ============================================ */
  /* ============================================ */
  /* RESERVED FOR FUTURE USE                  */
  /* ============================================ */
  /* ============================================ */
  /* ============================================ */
  display: block;
}
.c-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
}
.c-role {
  font-size: 0.9rem;
  color: var(--text-2);
  margin-top: 2px;
}
.c-online {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--green);
  margin-top: 4px;
  font-weight: 600;
}
.online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: beat 2s ease-in-out infinite;
}

/* Headline */
.left-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 1.1rem;
}
.left-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.left-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* Bullets */
.bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.75rem;
}
.bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.bullet-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(43, 102, 230, 0.1);
  border: 1px solid rgba(43, 102, 230, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--accent);
}
.bullet-text {
  font-size: 0.97rem;
  color: var(--text-2);
  line-height: 1.65;
}
.bullet-text strong {
  color: var(--text);
  font-weight: 600;
}

/* Quote */
.left-quote {
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin-bottom: 2.75rem;
}
.left-quote p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0.55rem;
}
.left-quote cite {
  font-size: 0.8rem;
  color: var(--text-3);
  font-style: normal;
  font-weight: 600;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* DIRECT CONTACT LINKS                     */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.direct-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.dl {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.25rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-2);
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.dl:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(43, 102, 230, 0.06);
  transform: translateX(4px);
}
.dl-icon {
  font-size: 0.875rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}
.dl-wa {
  color: var(--wa);
  border-color: rgba(37, 211, 102, 0.22);
  background: rgba(37, 211, 102, 0.04);
}
.dl-wa:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.4);
  color: var(--wa);
}

/* ============================================ */
/* ============================================ */
/* RIGHT PANEL                              */
/* ============================================ */
/* ============================================ */
.right-panel {
  padding: 5rem 4.5rem 5rem 4rem;
  background: var(--bg);
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* FORM HEADER                              */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 15px;
  border-radius: var(--r-full);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.22);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.1rem;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: beat 1.8s ease-in-out infinite;
}
.form-title {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.form-title span {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.form-subtitle {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* STEP INDICATOR                           */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.step-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.sdot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  font-family: var(--font-head);
  border: 1.5px solid var(--border);
  background: var(--bg-2);
  color: var(--text-3);
  transition: all 0.35s ease;
}
.sdot.active {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  box-shadow: var(--blue-glow-sm);
}
.sdot.done {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}
.sline {
  flex: 1;
  height: 1.5px;
  background: var(--border);
  margin: 0 7px;
  transition: background 0.35s;
}
.sline.done {
  background: var(--green);
}
.slabels {
  display: flex;
  margin-bottom: 2.25rem;
}
.slabel {
  flex: 1;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-3);
  transition: color 0.3s;
}
.slabel.active {
  color: var(--accent);
}
.slabel.done {
  color: var(--green);
}
.slabel:nth-child(2) {
  text-align: center;
}
.slabel:last-child {
  text-align: right;
}

/* ─────────────────────────────────────────── STEP 1 — Industry */
#step1 {
  /* Step 1 container — Industry selection */
  position: relative;
}
.s1-label {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-2);
  margin-bottom: 1rem;
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.itile {
  padding: 1.25rem 0.5rem 1rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--bg-2);
  text-align: center;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.itile:hover {
  border-color: var(--accent);
  background: rgba(43, 102, 230, 0.08);
  transform: translateY(-2px);
}
.itile.sel {
  border-color: var(--accent);
  background: rgba(43, 102, 230, 0.14);
  box-shadow: 0 0 0 3px rgba(43, 102, 230, 0.12);
}
.itile i {
  font-size: 1.4rem;
  color: var(--accent);
  display: block;
  margin-bottom: 7px;
  transition: transform 0.2s;
}
.itile:hover i,
.itile.sel i {
  transform: scale(1.1);
}
.itile span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-2);
  display: block;
  line-height: 1.3;
}
.itile.sel span {
  color: var(--accent);
}

/* ─────────────────────────────────────────── STEP 2 — Brief */
#step2 {
  display: none;
}
#step2.on {
  display: block;
  animation: slideUp 0.3s ease both;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* INDUSTRY CRUMB                           */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.ind-crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: var(--r-full);
  background: rgba(43, 102, 230, 0.1);
  border: 1px solid rgba(43, 102, 230, 0.22);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.75rem;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.ind-crumb:hover {
  background: rgba(43, 102, 230, 0.18);
}
.crumb-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: #fff;
  flex-shrink: 0;
}
.crumb-edit {
  font-size: 0.68rem;
  color: var(--text-3);
  margin-left: 2px;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* FORM GROUPS                              */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.fg {
  margin-bottom: 1.5rem;
}
.fg label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-2);
}
.fg label .req {
  color: var(--accent);
}
.fg label .opt {
  color: var(--text-3);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.77rem;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition:
    border-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1),
    background 150ms cubic-bezier(0.4, 0, 0.2, 1);
  appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(43, 102, 230, 0.04);
  box-shadow: 0 0 0 3px rgba(43, 102, 230, 0.1);
}
.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--text-3);
}
.fg textarea {
  resize: vertical;
  min-height: 108px;
  line-height: 1.65;
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2360a5fa' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 12px;
  cursor: pointer;
}
.fg select option,
.fg select optgroup {
  background: #1a2029;
  color: var(--text);
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* FILE UPLOAD ZONE                         */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.file-zone {
  border: 1.5px dashed var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.015);
  text-align: center;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.file-zone:hover {
  border-color: var(--accent);
  background: rgba(43, 102, 230, 0.04);
}
.file-zone input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.fz-icon {
  font-size: 1.75rem;
  color: var(--text-3);
  margin-bottom: 0.65rem;
}
.fz-main {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.fz-sub {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.55;
}
.fz-meta {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 0.4rem;
}
.fz-chosen {
  display: none;
  align-items: center;
  gap: 7px;
  justify-content: center;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
}
.fz-chosen i {
  font-size: 0.9rem;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* URGENCY BAR                              */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.urg-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  margin: 1.75rem 0 1.25rem;
  background: rgba(245, 158, 11, 0.07);
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: var(--r-lg);
}
.urg-bar i {
  color: var(--amber);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.urg-bar span {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.45;
}
.urg-bar strong {
  color: var(--text);
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* SUBMIT BUTTON                            */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.submit-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--blue-glow-sm);
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.submit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transition: left 0.6s ease;
}
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--blue-glow-md);
}
.submit-btn:hover::after {
  left: 100%;
}
.submit-btn:active {
  transform: translateY(0);
}
.submit-btn.loading {
  opacity: 0.65;
  pointer-events: none;
}
.trust-micro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: var(--text-3);
}
.trust-micro i {
  color: var(--green);
  font-size: 0.72rem;
}

/* ─────────────────────────────────────────── STEP 3 — Success */
#step3 {
  display: none;
  text-align: center;
  padding: 1rem 0;
}
#step3.on {
  display: block;
  animation: popIn 0.45s ease both;
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.success-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: #fff;
  margin: 0 auto 1.5rem;
  box-shadow:
    0 0 0 10px rgba(43, 102, 230, 0.1),
    0 0 0 20px rgba(43, 102, 230, 0.05);
}
#step3 h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}
#step3 .s3-sub {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.s3-steps {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.s3-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  font-size: 0.95rem;
  color: var(--text-2);
  text-align: left;
}
.s3-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}
.s3-num.dn {
  background: var(--green);
  color: #fff;
}
.s3-num.ac {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
}
.s3-num.pd {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-3);
}
.s3-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.s3-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: var(--r-lg);
  font-weight: 800;
  font-size: 1rem;
  color: var(--wa);
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.s3-wa:hover {
  background: rgba(37, 211, 102, 0.18);
  transform: translateY(-2px);
}
.s3-cal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px;
  background: rgba(43, 102, 230, 0.08);
  border: 1px solid rgba(43, 102, 230, 0.2);
  border-radius: var(--r-lg);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.s3-cal:hover {
  background: rgba(43, 102, 230, 0.15);
  transform: translateY(-2px);
}
.s3-note {
  font-size: 0.76rem;
  color: var(--text-3);
  text-align: center;
  margin-top: 0.4rem;
}

/* ============================================ */
/* ============================================ */
/* BOOK A CALL                              */
/* ============================================ */
/* ============================================ */
.book-section {
  padding: 7rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.book-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(43, 102, 230, 0.05),
    transparent 65%
  );
  pointer-events: none;
}
.book-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.book-info {
  /* ============================================ */
  /* ============================================ */
  /* ============================================ */
  /* CONTAINER FOR BOOKING INFORMATION SECTION*/
  /* ============================================ */
  /* ============================================ */
  /* ============================================ */
  position: relative;
}
.book-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 15px;
  border-radius: var(--r-full);
  background: rgba(43, 102, 230, 0.1);
  border: 1px solid rgba(43, 102, 230, 0.22);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.book-headline {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 1rem;
}
.book-headline span {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.book-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}
.book-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.25rem;
}
.bb {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.bb:hover {
  border-color: var(--accent);
}
.bb-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(43, 102, 230, 0.1);
  border: 1px solid rgba(43, 102, 230, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--accent);
  flex-shrink: 0;
}
.bb-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.bb-text span {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.5;
}
.book-quote {
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin-bottom: 1.75rem;
}
.book-quote p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 0.55rem;
}
.book-quote-author {
  display: flex;
  align-items: center;
  gap: 9px;
}
.bq-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.bq-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}
.bq-role {
  font-size: 0.74rem;
  color: var(--text-3);
}
.no-slot {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 15px;
  background: rgba(37, 211, 102, 0.05);
  border: 1px solid rgba(37, 211, 102, 0.15);
  border-radius: var(--r-lg);
}
.no-slot i {
  color: var(--wa);
  font-size: 1.05rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.no-slot p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.55;
}
.no-slot a {
  color: var(--wa);
  font-weight: 700;
}
.no-slot a:hover {
  text-decoration: underline;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* CALENDLY CARD                            */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.cal-card {
  /* existing styles */
  overflow: visible; /* was "hidden" – prevents clipping */
  min-height: 700px; /* matches the widget height */
  height: auto; /* allows natural expansion */
}

/* Ensure the widget container fills the card */
.calendly-inline-widget {
  width: 100% !important; /* override any inline min-width quirks */
  height: 700px !important;
}
.cal-top {
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, #5b8fff 100%);
}
.cal-head {
  padding: 1.15rem 1.5rem;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cal-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cal-title i {
  color: var(--accent);
}
.cal-avail {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 11px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fbbf24;
}
.cal-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  animation: beat 1.5s ease-in-out infinite;
}

/* ============================================ */
/* ============================================ */
/* CONTACT STRIP                            */
/* ============================================ */
/* ============================================ */
.contact-strip {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.cstrip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.ccard {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 1.1rem 1.35rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: all var(--ease);
}
.ccard:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--blue-glow-sm);
}
.ccard-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid;
}
.ci-g {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.22);
  color: var(--wa);
}
.ci-b {
  background: rgba(43, 102, 230, 0.1);
  border-color: rgba(43, 102, 230, 0.22);
  color: var(--accent);
}
.ci-e {
  background: rgba(43, 102, 230, 0.1);
  border-color: rgba(43, 102, 230, 0.22);
  color: var(--accent);
}
.ci-a {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.22);
  color: #fbbf24;
}
.ci-p {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.22);
  color: #a78bfa;
}

/* cstrip mobile — moved from inline <style> in contact.html */
@media (max-width: 768px) {
  .cstrip-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .ccard {
    width: 100%;
  }
}
.ccard-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-3);
  margin-bottom: 2px;
}
.ccard-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.ccard-sub {
  font-size: 0.76rem;
  color: var(--text-2);
}

/* ============================================ */
/* FOOTER */
/* ============================================ */
footer,
.footer {
  background: var(--bg-2);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -1px;
  display: block;
  margin-bottom: 0.85rem;
}
.footer-logo span {
  color: var(--accent);
}
.footer-desc {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-links li a,
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.footer-links li a:hover,
.footer-links a:hover {
  color: var(--accent);
}
.footer-links i {
  font-size: 0.78rem;
  width: 14px;
  text-align: center;
}
.footer-link {
  font-size: 0.9rem;
  color: var(--text-2);
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-link:hover {
  color: var(--accent);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-3);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-3);
}
.footer-soc {
  display: flex;
  gap: 0.6rem;
}
.footer-soc-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: 0.82rem;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-soc-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}
.footer-soc-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

/* ============================================ */
/* ============================================ */
/* WHATSAPP FLOAT                           */
/* ============================================ */
/* ============================================ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.25rem;
  background: var(--wa);
  border-radius: var(--r-full);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.4);
  transition: all var(--ease);
  z-index: 998;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
}
.wa-float span {
  display: none;
}
@media (min-width: 560px) {
  .wa-float span {
    display: inline;
  }
}

/* ============================================ */
/* ============================================ */
/* ANIMATIONS                               */
/* ============================================ */
/* ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.a1 {
  animation: fadeInUp 0.5s ease both;
}
.a2 {
  animation: fadeInUp 0.5s ease 0.08s both;
}
.a3 {
  animation: fadeInUp 0.5s ease 0.16s both;
}
.a4 {
  animation: fadeInUp 0.5s ease 0.24s both;
}
.a5 {
  animation: fadeInUp 0.5s ease 0.32s both;
}

/* ============================================ */
/* ============================================ */
/* RESPONSIVE                               */
/* ============================================ */
/* ============================================ */
@media (max-width: 1100px) {
  .page-split {
    grid-template-columns: 1fr;
  }
  .left-panel {
    position: static;
    max-height: none;
    overflow: visible;
    padding: 5.5rem 2rem 3.5rem;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .left-inner {
    max-width: 640px;
    margin: 0 auto;
  }
  .right-panel {
    padding: 4rem 2rem 5rem;
  }
  .book-inner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .cstrip-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  nav {
    height: 72px !important;
    padding: 0 1.25rem !important;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    gap: 1rem;
    z-index: 999;
  }
  .nav-links.open {
    display: flex;
  }
  .mobile-menu-btn {
    display: block;
  }
  .ind-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }
  .itile {
    padding: 1rem 0.3rem 0.85rem;
  }
  .itile i {
    font-size: 1.2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .book-section {
    padding: 5rem 0;
  }
  .cstrip-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }
}
@media (max-width: 420px) {
  .ind-grid {
    gap: 0.4rem;
  }
  .itile span {
    font-size: 0.65rem;
  }
}

/* ══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════
   MULTI-STEP FORM — v2 additions
   ══════════════════════════════════════════════════════════════ */

/* Step pane visibility */
.step-pane {
  display: none;
}
.step-pane.on {
  display: block;
  animation: slideUp 0.3s ease both;
}

/* Step sub-heading */
.s-heading {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

/* Section divider within a step */
.step-section-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-2);
  margin-bottom: 1rem;
}
.step-section-note {
  font-size: 0.81rem;
  color: var(--text-3);
  line-height: 1.55;
  margin-top: -0.6rem;
  margin-bottom: 1.25rem;
}

/* Field hint text */
.fg-hint {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 0.4rem;
  line-height: 1.5;
}

/* Field error state */
.field-error {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* ── Radio pill buttons ─────────────────────────────────────── */
.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.4rem;
}
.radio-opt {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.radio-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.radio-opt span {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.05rem;
  border-radius: var(--r-full);
  border: 1px solid var(--border-2);
  background: var(--bg-2);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  transition: all var(--dur-fast) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.radio-opt input[type="radio"]:checked + span {
  border-color: var(--accent);
  background: rgba(43, 102, 230, 0.12);
  color: var(--accent);
}
.radio-opt span:hover {
  border-color: var(--accent-light);
  color: var(--text);
}
.radio-big span {
  padding: 0.65rem 1.35rem;
  font-size: 0.95rem;
}

/* ── Checkbox pill buttons ──────────────────────────────────── */
.check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.4rem;
}
.check-opt {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.check-opt input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.check-opt span {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.05rem;
  border-radius: var(--r-full);
  border: 1px solid var(--border-2);
  background: var(--bg-2);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  transition: all var(--dur-fast) var(--ease);
  cursor: pointer;
}
.check-opt input[type="checkbox"]:checked + span {
  border-color: var(--accent);
  background: rgba(43, 102, 230, 0.12);
  color: var(--accent);
}
.check-opt span:hover {
  border-color: var(--accent-light);
  color: var(--text);
}

/* ── Vibe check cards ───────────────────────────────────────── */
.vibe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin-top: 0.5rem;
}
.vibe-opt {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.vibe-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.vibe-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
  padding: 1rem 0.75rem;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  background: var(--bg-2);
  transition: all var(--dur-fast) var(--ease);
}
.vibe-card:hover {
  border-color: var(--accent-light);
  background: rgba(43, 102, 230, 0.04);
}
.vibe-opt input[type="radio"]:checked ~ .vibe-card {
  border-color: var(--accent);
  background: rgba(43, 102, 230, 0.12);
  box-shadow: 0 0 0 3px rgba(43, 102, 230, 0.1);
}
.vibe-icon {
  font-size: 1.55rem;
  line-height: 1;
}
.vibe-card strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}
.vibe-card span {
  font-size: 0.7rem;
  color: var(--text-3);
  line-height: 1.4;
}

/* ── Back / Next buttons ────────────────────────────────────── */
.step-nav {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.75rem;
}
.next-btn {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--blue-glow-sm);
  transition: all var(--ease);
  cursor: pointer;
  border: none;
}
.next-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--blue-glow-md);
}
.back-btn {
  padding: 1rem 1.1rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-2);
  background: transparent;
  color: var(--text-2);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.back-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Step label alignment for 5 labels ─────────────────────── */
.slabels .slabel:nth-child(2),
.slabels .slabel:nth-child(3),
.slabels .slabel:nth-child(4) {
  text-align: center;
}
.slabels .slabel:nth-child(5) {
  text-align: right;
}

/* ── Responsive adjustments ─────────────────────────────────── */
@media (max-width: 600px) {
  .vibe-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .step-nav {
    flex-direction: column-reverse;
  }
  .next-btn,
  .back-btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 420px) {
  .radio-row {
    gap: 0.4rem;
  }
  .radio-opt span,
  .check-opt span {
    font-size: 0.8rem;
    padding: 0.45rem 0.85rem;
  }
}
