/* =========================================
   MYSELECTPATH LFRO SYSTEM CSS
   Mobile First • Broker Structured
   ========================================= */


/* ---------- ROOT TOKENS ---------- */

:root {
  --navy: #0f172a;
  --navy-soft: #1e293b;
  --gray-100: #f8fafc;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1f2937;
  --white: #ffffff;

  --radius: 12px;
  --shadow-soft: 0 8px 24px rgba(0,0,0,.06);
}


/* ---------- BASE RESET ---------- */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--gray-100);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}


/* ---------- HEADER / LOGO ---------- */

.site-header {
  text-align: center;
  padding: 60px 16px 10px;
}

.logo {
  max-width: 300px;
  width: 100%;
  height: auto;
}


/* =========================================
   AGENT HERO SECTION
   ========================================= */

.agent-hero {
  text-align: center;
  padding: 32px 16px 16px;
}

.agent-label {
  font-size: 11px;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.agent-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 12px;
  box-shadow: var(--shadow-soft);
}

.agent-name-full {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.agent-license-note {
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 14px;
}

.agent-hero h1 {
  font-size: 22px;
  line-height: 1.4;
  margin: 0;
  padding: 0 6px;
}


/* =========================================
   INTAKE SECTION
   ========================================= */

.intake-section {
  max-width: 520px;
  margin: 24px auto 40px;
  padding: 0 16px;
}

.intake-reassurance {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 18px;
  font-size: 14px;
  color: #666;
}

.intake-section form {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.intake-section input,
.intake-section textarea,
.intake-section select {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  font-size: 16px;  /* prevents iOS zoom */
  background: var(--white);
}

.intake-section textarea {
  resize: vertical;
}

.intake-section input:focus,
.intake-section textarea:focus,
.intake-section select:focus {
  outline: none;
  border-color: var(--navy-soft);
}

.intake-section button {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: .15s ease;
}

.intake-section button:active {
  transform: scale(.98);
}

.intake-section button:hover {
  opacity: .92;
}


/* =========================================
   FOOTER
   ========================================= */
.broker-title {
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.page-footer {
  text-align: center;
  font-size: 12px;
  color: var(--gray-600);
  padding: 32px 16px 48px;
  line-height: 1.6;
  border-top: 1px solid var(--gray-200);
  margin-top: 40px;
}

/* =========================================
   FEATURE BAR (Template 3 Use)
   ========================================= */

.feature-bar {
  background: var(--navy);
  color: var(--white);
  padding: 24px 16px;
  margin: 40px 0;
}

.features {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.features div {
  flex: 1;
  min-width: 140px;
  font-size: 14px;
}


/* =========================================
   DESKTOP ENHANCEMENTS
   ========================================= */

@media (min-width: 768px) {

  .site-header {
    padding-top: 80px;
  }

  .logo {
    max-width: 360px;
  }

  .agent-photo {
    width: 140px;
    height: 140px;
  }

  .agent-hero h1 {
    font-size: 26px;
  }

  .intake-section form {
    padding: 32px;
  }

}