/* =====================================================
   B2B Lead Form — Shared Styles
   Scope: .b2b-lead-form wrapper
   Variables prefixed with --blf- to avoid collisions
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600&family=Barlow+Condensed:wght@600;700;800&display=swap');

:root {
  --blf-navy: #0d2458;
  --blf-navy-dark: #081840;
  --blf-navy-mid: #1a3a7e;
  --blf-navy-light: #e8eef8;
  --blf-accent: #feb407;
  --blf-accent-dark: #c88010;
  --blf-accent-pale: #fdf3e0;
  --blf-white: #ffffff;
  --blf-bg: #f0f3fa;
  --blf-text: #1a2a4a;
  --blf-muted: #6a7a9a;
  --blf-border: #c8d4ea;
  --blf-error: #d32f2f;
  --blf-success: #1b7a3e;
  --blf-success-bg: #e8f5ee;
  --blf-radius: 5px;
  --blf-radius-lg: 10px;
  --blf-radius-xl: 16px;
  --blf-shadow: 0 8px 32px rgba(8, 24, 64, 0.13);
}

/* ── FORM CARD (the outer split card) ── */
.b2b-lead-form .form-card {
  height: 90vh;
  background: var(--blf-white);
  border-radius: var(--blf-radius-xl);
  box-shadow: var(--blf-shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 400px 1fr;
}

/* ── LEFT PANEL ── */
.b2b-lead-form .left-panel {
  background: var(--blf-navy-dark);
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* ── LEFT PANEL INNER SCROLL WRAPPER ── */
.b2b-lead-form .left-panel-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  z-index: 2;
  padding: 20px 20px 20px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.b2b-lead-form .left-panel-content::-webkit-scrollbar {
  width: 5px;
}

.b2b-lead-form .left-panel-content::-webkit-scrollbar-track {
  background: transparent;
}

.b2b-lead-form .left-panel-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.b2b-lead-form .left-panel::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(60px, -60px);
  width: 220px;
  height: 220px;
  border: 50px solid rgba(232, 160, 32, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.b2b-lead-form .left-panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -30px;
  transform: translateY(40px);
  width: 160px;
  height: 160px;
  border: 35px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.b2b-lead-form .left-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blf-accent);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.b2b-lead-form .left-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30dpx;
  font-weight: 800;
  color: var(--blf-white);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.b2b-lead-form .left-heading span {
  color: var(--blf-accent);
}

.b2b-lead-form .left-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Benefits list */
.b2b-lead-form .benefit-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 15px;
  position: relative;
  z-index: 1;
}

.b2b-lead-form .benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}

.b2b-lead-form .benefit-icon {
  width: 20px;
  height: 20px;
  background: rgba(232, 160, 32, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Trust badges */
.b2b-lead-form .trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.b2b-lead-form .trust-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--blf-radius);
  padding: 10px;
  text-align: center;
}

.b2b-lead-form .trust-badge strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--blf-accent);
  line-height: 1;
  margin-bottom: 3px;
}

.b2b-lead-form .trust-badge span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Contact info at bottom of left panel */
.b2b-lead-form .left-contact {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.b2b-lead-form .left-contact p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.b2b-lead-form .contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  text-decoration: none;
}

.b2b-lead-form .contact-row:hover {
  color: var(--blf-accent);
}

.b2b-lead-form .contact-row span {
  font-size: 14px;
}

/* ── RIGHT PANEL (FORM) ── */
.b2b-lead-form .right-panel {
  padding: 20px;
  display: flex;
  flex-direction: column;
  font-family: 'Barlow', sans-serif;
  overflow: hidden;
}

/* Step indicator */
.b2b-lead-form .step-track {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}

.b2b-lead-form .step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  position: relative;
}

.b2b-lead-form .step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14px;
  left: calc(50% + 14px);
  width: calc(100% - 28px);
  height: 2px;
  background: var(--blf-border);
  transition: background 0.4s;
}

.b2b-lead-form .step-item.done:not(:last-child)::after,
.b2b-lead-form .step-item.active:not(:last-child)::after {
  background: var(--blf-accent);
}

.b2b-lead-form .step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid var(--blf-border);
  background: var(--blf-white);
  color: var(--blf-muted);
  transition: all 0.3s;
  z-index: 1;
}

.b2b-lead-form .step-item.active .step-dot {
  background: var(--blf-accent);
  border-color: var(--blf-accent);
  color: var(--blf-navy-dark);
}

.b2b-lead-form .step-item.done .step-dot {
  background: var(--blf-navy);
  border-color: var(--blf-navy);
  color: white;
  font-size: 11px;
}

.b2b-lead-form .step-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--blf-muted);
  white-space: nowrap;
}

.b2b-lead-form .step-item.active .step-label {
  color: var(--blf-accent-dark);
}

.b2b-lead-form .step-item.done .step-label {
  color: var(--blf-navy);
}

/* Form steps */
.b2b-lead-form .form-step {
  display: none;
  flex-direction: column;
  gap: 0;
  flex: 1;
  overflow: hidden;
}

.b2b-lead-form .form-step.active {
  display: flex;
}

/* ── FIELDS SCROLL CONTAINER ── */
/* Only the fields area scrolls; title, subtitle, and nav stay fixed */
.b2b-lead-form .blf-fields-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
  padding-right: 4px;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--blf-border) transparent;
}

.b2b-lead-form .blf-fields-scroll::-webkit-scrollbar {
  width: 5px;
}

.b2b-lead-form .blf-fields-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.b2b-lead-form .blf-fields-scroll::-webkit-scrollbar-thumb {
  background: var(--blf-border);
  border-radius: 4px;
}

.b2b-lead-form .step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--blf-navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}

.b2b-lead-form .step-title span {
  color: var(--blf-accent-dark);
}

.b2b-lead-form .step-subtitle {
  font-size: 13px;
  color: var(--blf-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Field groups */
.b2b-lead-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.b2b-lead-form .field-row.full {
  grid-template-columns: 1fr;
}

.b2b-lead-form .field-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

.b2b-lead-form .field-row .field-group {
  margin-bottom: 0;
}

.b2b-lead-form label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blf-navy);
}

.b2b-lead-form label .req {
  color: var(--blf-accent-dark);
  margin-left: 2px;
}

.b2b-lead-form input[type="text"],
.b2b-lead-form input[type="email"],
.b2b-lead-form input[type="tel"],
.b2b-lead-form select,
.b2b-lead-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--blf-border);
  border-radius: var(--blf-radius);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--blf-text);
  background: var(--blf-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.b2b-lead-form input::placeholder,
.b2b-lead-form textarea::placeholder {
  color: #aab4cc;
}

.b2b-lead-form input:focus,
.b2b-lead-form select:focus,
.b2b-lead-form textarea:focus {
  border-color: var(--blf-navy);
  box-shadow: 0 0 0 3px rgba(13, 36, 88, 0.1);
}

.b2b-lead-form input.error,
.b2b-lead-form select.error,
.b2b-lead-form textarea.error {
  border-color: var(--blf-error);
}

.b2b-lead-form .field-error {
  font-size: 11px;
  color: var(--blf-error);
  display: none;
  margin-top: 2px;
}

.b2b-lead-form .field-error.visible {
  display: block;
}

.b2b-lead-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236a7a9a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.b2b-lead-form textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.5;
}

/* Work email hint */
.b2b-lead-form .email-hint {
  font-size: 11px;
  color: var(--blf-muted);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.b2b-lead-form .email-hint.warn {
  color: #b45309;
}

/* Service checkboxes */
.b2b-lead-form .service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.b2b-lead-form .service-check {
  position: relative;
}

.b2b-lead-form .service-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.b2b-lead-form .service-check label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1.5px solid var(--blf-border);
  border-radius: var(--blf-radius);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--blf-muted);
  transition: all 0.2s;
  background: var(--blf-white);
}

.b2b-lead-form .service-check label:hover {
  border-color: var(--blf-navy);
  color: var(--blf-navy);
}

.b2b-lead-form .service-check input:checked+label {
  background: var(--blf-navy-light);
  border-color: var(--blf-navy);
  color: var(--blf-navy);
}

.b2b-lead-form .service-check .svc-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.b2b-lead-form .check-mark {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--blf-border);
  border-radius: 3px;
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.b2b-lead-form .service-check input:checked+label .check-mark {
  background: var(--blf-navy);
  border-color: var(--blf-navy);
  color: white;
  font-size: 10px;
}

/* Budget / Timeline pills */
.b2b-lead-form .pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.b2b-lead-form .pill-option {
  position: relative;
}

.b2b-lead-form .pill-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.b2b-lead-form .pill-option label {
  display: block;
  padding: 8px 16px;
  border: 1.5px solid var(--blf-border);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--blf-muted);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.b2b-lead-form .pill-option label:hover {
  border-color: var(--blf-navy);
  color: var(--blf-navy);
}

.b2b-lead-form .pill-option input:checked+label {
  background: var(--blf-navy);
  border-color: var(--blf-navy);
  color: white;
}

/* Navigation buttons */
.b2b-lead-form .form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  /*padding-top: 12px;*/
}

.b2b-lead-form .btn-back {
  background: none;
  border: 1.5px solid var(--blf-border);
  color: var(--blf-muted);
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 11px 22px;
  border-radius: var(--blf-radius);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.b2b-lead-form .btn-back:hover {
  border-color: var(--blf-navy);
  color: var(--blf-navy);
}

.b2b-lead-form .btn-next {
  background: var(--blf-accent);
  border: none;
  color: var(--blf-navy-dark);
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 12px 28px;
  border-radius: var(--blf-radius);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.b2b-lead-form .btn-next:hover {
  background: var(--blf-accent-dark);
  transform: translateY(-1px);
}

.b2b-lead-form .btn-submit {
  background: var(--blf-navy);
  border: none;
  color: white;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 14px 32px;
  border-radius: var(--blf-radius);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.b2b-lead-form .btn-submit:hover {
  background: var(--blf-navy-mid);
  transform: translateY(-1px);
}

.b2b-lead-form .btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.b2b-lead-form .step-count {
  font-size: 12px;
  color: var(--blf-muted);
}

.b2b-lead-form .step-count strong {
  color: var(--blf-navy);
}

/* ── SUCCESS SCREEN ── */
@keyframes blfFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.b2b-lead-form .success-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  gap: 16px;
  animation: blfFadeIn 0.4s ease;
  overflow-y: auto;
}

.b2b-lead-form .success-icon {
  width: 72px;
  height: 72px;
  background: var(--blf-success-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 8px;
}

.b2b-lead-form .success-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blf-navy);
  letter-spacing: 0.3px;
}

.b2b-lead-form .success-sub {
  font-size: 14px;
  color: var(--blf-muted);
  max-width: 340px;
  line-height: 1.6;
}

.b2b-lead-form .success-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 380px;
  margin: 8px 0;
}

.b2b-lead-form .success-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--blf-navy-light);
  border-radius: var(--blf-radius);
  text-align: left;
  font-size: 13px;
  color: var(--blf-navy);
}

.b2b-lead-form .success-step-num {
  width: 24px;
  height: 24px;
  background: var(--blf-navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.b2b-lead-form .btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 12px 24px;
  border-radius: var(--blf-radius);
  text-decoration: none;
  transition: opacity 0.2s;
  margin-top: 4px;
}

.b2b-lead-form .btn-whatsapp:hover {
  opacity: 0.9;
  color: white;
}

/* ── PRIVACY NOTE ── */
.b2b-lead-form .privacy-note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--blf-border);
  font-size: 11px;
  color: var(--blf-muted);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}

/* Lock the icon, let the text wrap */
.b2b-lead-form .privacy-note span:first-child {
  flex-shrink: 0;
  margin-top: 1px;
}

.b2b-lead-form .privacy-note span:last-child {
  flex-shrink: 1;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  .b2b-lead-form .form-card {
    grid-template-columns: 1fr;
  }

  .b2b-lead-form .left-panel {
    padding: 32px 28px;
    display: none;
  }

  .b2b-lead-form .trust-grid {
    display: none;
  }

  .b2b-lead-form .field-row {
    grid-template-columns: 1fr;
  }

  .b2b-lead-form .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) and (min-width: 426px) {
  .b2b-lead-form .btn-submit {
    font-size: 10px;
    padding: 14px 18px;
  }
  .b2b-lead-form .btn-back-final {
    font-size: 11px !important;
  }
}

@media (max-width: 426px) {
  .b2b-lead-form .form-nav {
    flex-direction: column;
    gap: 5px;
  }

  .b2b-lead-form .btn-back {
    width: 100%;
    justify-content: center;
  }

  .b2b-lead-form .btn-submit {
    width: 100%;
    justify-content: center;
  }

  .b2b-lead-form .btn-next {
    width: 100%;
    justify-content: center;
  }

  .b2b-lead-form .btn-whatsapp {
    font-size: 10px;
  }
}

/* ── DIALOG OVERLAY STYLES ── */
.blf-dialog-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 24, 64, 0.55);
  backdrop-filter: blur(4px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;
}

.blf-dialog-overlay.open {
  display: flex;
}

.blf-dialog-box {
  position: relative;
  width: 100%;
  max-width: 980px;
  max-height: 93vh;
  margin: auto;
  animation: blfFadeIn 0.3s ease;
}

/* Form card fills the constrained box height */
.blf-dialog-box .form-card {
  height: 94vh;
  max-height: 94vh;
}

.blf-dialog-box .right-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
}

/* Step track stays fixed at top */
.blf-dialog-box .step-track {
  flex-shrink: 0;
}

/* Only the ACTIVE step fills remaining height (base CSS already sets display:flex/column on .active) */
/*.blf-dialog-box .form-step.active {*/
/*  flex: 1;*/
/*  overflow-y: auto;*/
/*  min-height: 0;*/
/*}*/

/* form-nav anchors to the bottom — base CSS already has margin-top:auto, just lock it */
.blf-dialog-box .form-nav {
  flex-shrink: 0;
  position: static;
  background: var(--blf-white);
  border-top: 1px solid var(--blf-border);
  padding-top: 16px;
  padding-bottom: 8px;
  margin-top: auto;
}

.blf-dialog-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  background: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--blf-navy);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
  line-height: 1;
}

.blf-dialog-close:hover {
  background: var(--blf-accent);
}

.btn-outline {
  background: transparent;
  color: #0d47a1;
  border: 2px solid #0d47a1;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  transform: scale(1);
}

/* Arrow styling */
.btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Hover effect */
.btn-outline:hover {
  background: #0d47a1;
  color: #fff;
  transform: scale(1.05);
}

/* Move arrow slightly on hover */
.btn-outline:hover .btn-arrow {
  transform: translateX(6px);
}

/* Optional: click effect */
.btn-outline:active {
  transform: scale(0.98);
}

@media (max-width: 850px) and (min-width: 801px) {
  .b2b-lead-form .form-card {
    grid-template-columns: 300px 1fr;
  }
}