body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
  background: #f4f7fb;
  color: #1f2937;
}

/* Reuse your hero visual direction */
.sales-hero {
  min-height: 55vh;
  height: auto;
  padding: 120px 20px 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-image: url('/images/hero.png');
  color: white;
  position: relative;
}

.sales-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7, 14, 25, 0.45), rgba(7, 14, 25, 0.72));
  z-index: 0;
}

.sales-hero-content {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  padding: 30px;
  border-radius: 14px;
  max-width: 900px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 123, 255, 0.22);
  border: 1px solid rgba(0, 123, 255, 0.4);
  color: #dbeafe;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.sales-hero h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.15;
  font-weight: bold;
}

.hero-subtitle {
  margin: 14px auto 0;
  max-width: 760px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.hero-badges {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: bold;
}

.sales-page {
  width: 100%;
  box-sizing: border-box;
  padding: 40px 20px 60px;
}

.sales-grid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 24px;
  align-items: start;
}

.sales-panel {
  min-width: 0;
}

.panel-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e6edf5;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  padding: 22px;
  margin-bottom: 18px;
}

.panel-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  color: #111827;
}

.panel-card p {
  color: #4b5563;
  line-height: 1.5;
  margin: 8px 0 0;
}

.subtle {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  color: #334155;
  line-height: 1.75;
}

.feature-list li {
  margin-bottom: 4px;
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 10px;
  background: #f8fbff;
  border: 1px solid #e6f0ff;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #007bff;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step strong {
  display: block;
  color: #111827;
  margin-bottom: 3px;
}

.step p {
  margin: 0;
  font-size: 14px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list span {
  background: #eef5ff;
  color: #1e40af;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: bold;
}

/* Form card */
.form-card {
  padding: 24px;
}

.form-header {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.form-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 4px;
}

.form-header h3 {
  margin: 0;
  font-size: 22px;
}

.form-header p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #6b7280;
}

.alert {
  border-radius: 10px;
  padding: 12px 14px;
  margin: 12px 0 16px;
  font-size: 14px;
}

.alert-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.sales-form {
  display: grid;
  gap: 14px;
}

.field-row {
  display: grid;
  gap: 14px;
}

.field-row.two-col {
  grid-template-columns: 1fr 1fr;
}

.field-row.three-col {
  grid-template-columns: 1fr 1fr 1fr;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.field label {
  font-size: 13px;
  font-weight: bold;
  color: #374151;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 14px;
  color: #111827;
  background: #fff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.12);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.45;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fafcff;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: normal;
  font-size: 14px;
  color: #374151;
}

.checkbox-grid input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
}

.form-actions {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-button.sales-submit {
  margin-top: 0;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 12px 18px;
  border-radius: 10px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.cta-button.sales-submit:hover {
  background-color: #0056b3;
}

.secondary-link {
  color: #0b61d8;
  text-decoration: none;
  font-weight: bold;
}

.secondary-link:hover {
  text-decoration: underline;
}

.form-footnote {
  margin: 6px 0 0;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
}

/* Nav alignment safety if your nav.css differs */
nav {
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

nav h1 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .sales-grid {
    grid-template-columns: 1fr;
  }

  .sales-info-panel {
    order: 2;
  }

  .sales-panel:last-child {
    order: 1;
  }
}

@media (max-width: 768px) {
  .sales-hero {
    min-height: auto;
    padding: 100px 16px 48px;
  }

  .sales-hero-content {
    padding: 20px;
  }

  .sales-hero h2 {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .sales-page {
    padding: 24px 14px 40px;
  }

  .panel-card,
  .form-card {
    padding: 16px;
  }

  .field-row.two-col,
  .field-row.three-col {
    grid-template-columns: 1fr;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: stretch;
  }

  .cta-button.sales-submit {
    width: 100%;
    text-align: center;
  }
}