/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --slate-950: #020617;
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;
  --white:     #FFFFFF;
  --sky-500:   #0EA5E9;
  --sky-400:   #38BDF8;
  --emerald-500: #10B981;
  --emerald-400: #34D399;
  --amber-500:   #F59E0B;
  --amber-400:   #FBBF24;
  --red-500:     #EF4444;

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--slate-900);
  color: var(--slate-100);
  line-height: 1.6;
  overflow-x: hidden;
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(51, 65, 85, 0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-400);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

/* === HERO === */
.hero {
  padding: 80px 32px 100px;
  background: var(--slate-900);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--emerald-400);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-500);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.headline-accent {
  color: var(--emerald-400);
}

.hero-lede {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--slate-400);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-proof {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--amber-400);
  max-width: 420px;
  margin-top: -20px;
  margin-bottom: 32px;
  padding: 10px 14px;
  background: rgba(245, 158, 11, 0.08);
  border-left: 3px solid var(--amber-400);
  border-radius: 0 4px 4px 0;
}

.action-note {
  font-size: 0.8125rem;
  color: var(--slate-500);
  font-weight: 500;
}

/* === DASHBOARD FRAME === */
.hero-visual {
  position: relative;
}

.dashboard-frame {
  background: var(--slate-800);
  border: 1px solid rgba(51, 65, 85, 0.6);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(51, 65, 85, 0.6);
  background: rgba(30, 41, 59, 0.5);
}

.dash-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-300);
  font-family: var(--font-display);
}

.dash-status {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald-500);
  box-shadow: 0 0 6px var(--emerald-500);
  animation: pulse 2s ease-in-out infinite;
}

.status-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--emerald-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash-body {
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.metric-card {
  background: var(--slate-900);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 12px;
  padding: 16px;
}

.metric-primary {
  grid-column: 1;
  grid-row: 1;
}

.metric-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.metric-delta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.metric-delta.positive { color: var(--emerald-400); }
.metric-delta.negative { color: var(--red-500); }

.alert-card {
  grid-column: 2;
  grid-row: 1;
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.04);
}

.alert-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.alert-title {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--amber-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.alert-amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--amber-400);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.alert-desc {
  font-size: 0.6875rem;
  color: var(--slate-400);
  margin-bottom: 10px;
  line-height: 1.4;
}

.alert-cta {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--amber-500);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
}

.chart-card {
  grid-column: 1 / -1;
  background: var(--slate-900);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 12px;
  padding: 16px;
}

.chart-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.chart-area {
  height: 70px;
}

.chart-svg {
  width: 100%;
  height: 100%;
}

.metric-small {
  grid-column: 1 / -1;
}

.compliance-bar {
  height: 6px;
  background: rgba(51, 65, 85, 0.4);
  border-radius: 3px;
  overflow: hidden;
  margin: 8px 0 6px;
}

.compliance-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--emerald-500), var(--emerald-400));
  border-radius: 3px;
}

.compliance-note {
  font-size: 0.6875rem;
  color: var(--slate-400);
}

.dash-footer {
  padding: 10px 20px;
  border-top: 1px solid rgba(51, 65, 85, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-update {
  font-size: 0.6875rem;
  color: var(--slate-600);
}

.dash-agent {
  font-size: 0.6875rem;
  color: var(--emerald-400);
  font-weight: 600;
}

/* === TRUSTBAR === */
.trustbar {
  border-top: 1px solid rgba(51, 65, 85, 0.4);
  border-bottom: 1px solid rgba(51, 65, 85, 0.4);
  padding: 28px 32px;
  background: rgba(30, 41, 59, 0.3);
}

.trustbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.trustbar-label {
  font-size: 0.8125rem;
  color: var(--slate-500);
  font-weight: 500;
  white-space: nowrap;
}

.trustbar-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.trust-stat {}

.trust-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.trust-desc {
  font-size: 0.75rem;
  color: var(--slate-500);
  margin-top: 2px;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(51, 65, 85, 0.5);
}

/* === SECTION SHARED === */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sky-500);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate-400);
  max-width: 560px;
}

/* === FEATURES === */
.features {
  padding: 100px 32px;
  background: var(--slate-900);
}

.features-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  background: var(--slate-800);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-2px);
}

.feature-icon-wrap {
  margin-bottom: 20px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(51, 65, 85, 0.6);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--slate-400);
  margin-bottom: 20px;
}

.feature-detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-300);
}

/* === HOW IT WORKS === */
.howitworks {
  padding: 100px 32px;
  background: var(--slate-950);
  border-top: 1px solid rgba(51, 65, 85, 0.3);
}

.how-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}

.how-steps {
  max-width: 1200px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.how-step {}

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(51, 65, 85, 0.4);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
}

.step-connector {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--slate-700), var(--slate-800));
  margin-bottom: 20px;
}

.step-last {
  background: transparent;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--slate-400);
}

.how-visual {
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-track {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--slate-800);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 16px;
  padding: 24px 40px;
  justify-content: space-around;
}

.track-line {
  display: none; /* Use border spacing instead */
}

.track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.track-icon {
  width: 48px;
  height: 48px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.track-step span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-300);
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 32px;
  background: var(--slate-900);
  border-top: 1px solid rgba(51, 65, 85, 0.3);
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}

.manifesto-stat {}

.manifesto-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
}

.manifesto-fact {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate-400);
}

.manifesto-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, var(--slate-700), transparent);
}

.manifesto-body {}

.manifesto-quote {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--slate-300);
  margin-bottom: 24px;
}

.manifesto-founder {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate-400);
  font-style: italic;
  border-left: 3px solid var(--emerald-500);
  padding-left: 20px;
}

/* === PRICING === */
.pricing {
  padding: 100px 32px;
  background: var(--slate-950);
  border-top: 1px solid rgba(51, 65, 85, 0.3);
}

.pricing-header {
  max-width: 1200px;
  margin: 0 auto 56px;
}

.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--slate-800);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 24px;
  overflow: hidden;
}

.pricing-tier {
  padding: 36px 40px 28px;
  border-bottom: 1px solid rgba(51, 65, 85, 0.4);
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.05) 0%, transparent 100%);
}

.tier-name {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sky-500);
  margin-bottom: 12px;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
}

.price-period {
  font-size: 1.125rem;
  color: var(--slate-400);
  font-weight: 500;
}

.tier-tagline {
  font-size: 0.9375rem;
  color: var(--slate-400);
}

.pricing-features {
  padding: 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pf-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-200);
}

.pricing-checkout {
  padding: 28px 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(51, 65, 85, 0.3);
}

.checkout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 28px;
  background: var(--sky-500);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.checkout-btn:hover {
  background: var(--sky-400);
  transform: translateY(-1px);
}

.checkout-btn:active {
  transform: translateY(0);
}

.checkout-note {
  font-size: 0.8125rem;
  color: var(--slate-400);
  font-weight: 500;
  text-align: center;
}

.pricing-closing {
  max-width: 560px;
  margin: 40px auto 0;
  text-align: center;
}

.pricing-closing p {
  font-size: 0.9375rem;
  color: var(--slate-400);
  line-height: 1.7;
}

.pricing-closing strong {
  color: var(--emerald-400);
}

/* === CLOSING === */
.closing {
  padding: 120px 32px 100px;
  background: var(--slate-900);
  border-top: 1px solid rgba(51, 65, 85, 0.3);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--slate-400);
  max-width: 600px;
  margin: 0 auto 56px;
}

.closing-vision {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 480px;
  margin: 0 auto;
}

.vision-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-200);
  text-align: left;
}

.vision-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === FOOTER === */
.footer {
  padding: 48px 32px;
  background: var(--slate-950);
  border-top: 1px solid rgba(51, 65, 85, 0.3);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--slate-500);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--slate-300);
}

.footer-legal {
  font-size: 0.75rem;
  color: var(--slate-600);
  margin-top: 8px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .step-connector { display: none; }

  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .manifesto-divider { display: none; }

  .trustbar-inner {
    flex-direction: column;
    gap: 20px;
  }

  .trustbar-stats {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .trust-divider {
    display: none;
  }

  .nav-links { display: none; }
}

/* --- Lead capture forms --- */
.lead-form { margin-top: 16px; }
.lead-form-row { display: flex; gap: 8px; flex-wrap: wrap; }
.lead-email-input,
.lead-name-input {
  flex: 1 1 200px;
  padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  color: #f8fafc;
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s;
}
.lead-email-input::placeholder,
.lead-name-input::placeholder { color: rgba(248,250,252,0.45); }
.lead-email-input:focus,
.lead-name-input:focus { border-color: #10B981; }
.lead-form-btn {
  padding: 12px 24px;
  background: #10B981;
  color: #0F172A;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, opacity 0.15s;
}
.lead-form-btn:hover { background: #059669; }
.lead-form-btn:disabled { opacity: 0.6; cursor: default; }
.lead-form-success { color: #10B981; font-size: 15px; font-weight: 600; padding: 12px 0; }
.lead-form-error { color: #EF4444; font-size: 14px; padding: 8px 0; }

/* --- Design partner section --- */
.design-partner {
  background: #0F172A;
  border-top: 1px solid rgba(16,185,129,0.2);
  border-bottom: 1px solid rgba(16,185,129,0.2);
  padding: 80px 24px;
}
.design-partner-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.dp-eyebrow {
  display: inline-block;
  background: rgba(16,185,129,0.12);
  color: #10B981;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.dp-headline {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #f8fafc;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}
.dp-sub {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 28px;
}
.dp-form .lead-form-row { justify-content: center; }
.dp-form .lead-email-input,
.dp-form .lead-name-input { max-width: 240px; }
.dp-fine {
  color: #475569;
  font-size: 13px;
  margin: 14px 0 0;
}
@media (max-width: 600px) {
  .lead-form-row { flex-direction: column; }
  .lead-form-btn { width: 100%; }
  .dp-form .lead-email-input,
  .dp-form .lead-name-input { max-width: 100%; }
}
