/* ============================================================
   components.css — The Patient Agent
   Buttons, cards, forms, nav, footer, carrier pills, testimonials
   ============================================================ */

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-align: center;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  padding: 14px 28px;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform 0.15s ease;
  text-decoration: none;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}

.btn-ghost:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-text {
  background: transparent;
  color: var(--gold);
  padding: 14px 0;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.btn-text:hover {
  color: var(--gold-light);
  transform: none;
}

.btn-text::after {
  content: ' →';
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ---- Navigation ---- */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 1.5rem;
  transition: background var(--transition-med), padding var(--transition-med), box-shadow var(--transition-med);
  background: transparent;
}

#main-nav.scrolled {
  background: var(--navy);
  padding: 0.85rem 1.5rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  line-height: 1.2;
}

.nav-logo:hover {
  color: var(--gold-light);
}

.nav-logo span {
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

#hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#hamburger.active span:nth-child(2) {
  opacity: 0;
}

#hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

#mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

#mobile-menu a:hover {
  color: var(--gold);
}

#mobile-menu .btn-primary {
  font-size: 1rem;
  padding: 14px 36px;
}

#mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 860px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  #hamburger {
    display: flex;
  }
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  padding-top: 5rem;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 620px;
}

.hero-h1 {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  max-width: 520px;
}

/* Portrait card */
.portrait-card {
  position: relative;
}

.headshot-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--navy-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  overflow: hidden;
}

.headshot-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.portrait-card::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--gold-border);
  border-radius: calc(var(--border-radius) + 4px);
  pointer-events: none;
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 5rem 1.5rem 3rem;
  }

  .portrait-card {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--navy-light);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 1.25rem 1.5rem;
}

.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-bar-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.carrier-pills {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.carrier-pill {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 5px 14px;
  white-space: nowrap;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.carrier-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---- Icon Cards (Why It Matters) ---- */
.icon-card {
  background: var(--navy-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius);
  padding: 2rem 1.75rem;
  transition: border-color var(--transition-med), transform var(--transition-med);
}

.icon-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.icon-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.icon-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--gold-light);
}

.icon-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ---- Steps ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.25rem;
  left: calc(16.66% + 1.25rem);
  right: calc(16.66% + 1.25rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}

.step h3 {
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.step p {
  color: var(--text-dark);
  font-size: 0.95rem;
  opacity: 0.8;
}

@media (max-width: 700px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steps-grid::before {
    display: none;
  }
}

/* ---- Who I Serve Cards ---- */
.serve-card {
  background: var(--navy-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  transition: border-color var(--transition-med), transform var(--transition-med);
}

.serve-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.serve-card h3 {
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.serve-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.serve-card a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* ---- Lead Magnet Section ---- */
.lead-magnet {
  background: var(--navy-mid);
  border-left: 4px solid var(--gold);
  position: relative;
}

.lead-magnet h2 {
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.lead-magnet p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin-bottom: 2rem;
}

/* ---- Forms ---- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color var(--transition-fast), background var(--transition-fast);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Light form (on off-white bg) */
.form-light .form-group label {
  color: var(--text-dark);
  opacity: 0.7;
}

.form-light .form-group input,
.form-light .form-group textarea {
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--text-dark);
}

.form-light .form-group input::placeholder,
.form-light .form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.form-light .form-group input:focus,
.form-light .form-group textarea:focus {
  border-color: var(--gold);
}

/* TCPA checkbox */
.tcpa-group {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.tcpa-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

.tcpa-group label {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  cursor: pointer;
}

.form-success {
  display: none;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.form-error {
  display: none;
  background: rgba(220, 50, 50, 0.1);
  border: 1px solid rgba(220, 50, 50, 0.4);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  color: #ff8080;
  font-size: 0.95rem;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Testimonial Cards ---- */
.testimonial-card {
  background: var(--navy-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--navy-mid);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* ---- About Teaser ---- */
.about-teaser {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 860px) {
  .about-teaser {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ---- Product Cards ---- */
.product-card {
  background: var(--navy-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--transition-med), transform var(--transition-med);
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.product-card h3 {
  color: var(--gold-light);
  font-size: 1.2rem;
}

.product-card .product-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.product-card .best-for {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}

.product-card .best-for-list {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.25rem;
  padding-left: 0;
}

.product-card .best-for-list li {
  padding: 0.2rem 0;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.product-card .best-for-list li::before {
  content: '·';
  color: var(--gold);
  font-weight: 700;
}

.product-card .btn-ghost {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.85rem;
  padding: 10px 20px;
}

/* ---- Values Block ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius);
  background: var(--navy-light);
}

.value-item h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.value-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 700px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Blog Stub Cards ---- */
.blog-card {
  background: var(--navy-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-card .blog-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-card h3 {
  font-size: 1.1rem;
  color: var(--white);
}

.blog-card .coming-soon {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ---- Contact Options ---- */
.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-option {
  background: var(--navy-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
}

.contact-option h3 {
  color: var(--gold-light);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.contact-option .option-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.contact-option p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
}

@media (max-width: 760px) {
  .contact-options {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ---- Contact Details ---- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-detail-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.contact-detail-item a {
  color: rgba(255, 255, 255, 0.7);
}

.contact-detail-item a:hover {
  color: var(--gold);
}

/* ---- Pull Quote ---- */
.pull-quote {
  background: var(--navy-mid);
  border-left: 4px solid var(--gold);
  padding: 2rem 2.5rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  max-width: 720px;
  margin: 0 auto;
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.pull-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  font-style: normal;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--navy-mid);
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius);
  padding: 3rem 2.5rem;
  text-align: center;
}

.cta-banner h2 {
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  max-width: 520px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ---- Footer ---- */
footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--gold-border);
  padding: 3.5rem 1.5rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--gold-border);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-logo span {
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-top: 5px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-nav-group h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.footer-nav-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-nav-group a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-nav-group a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-disclosure {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  max-width: 820px;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 760px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: var(--navy);
  padding: 8rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 700px;
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 560px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ---- Legal Pages ---- */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.3rem;
  color: var(--gold-light);
  margin: 2rem 0 0.75rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  padding: 0.2rem 0;
}

/* ---- Mobile click-to-call ---- */
.mobile-cta-call {
  display: none;
}

@media (max-width: 640px) {
  .mobile-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
}

/* ---- Divider ---- */
.section-divider {
  width: 100%;
  height: 1px;
  background: var(--gold-border);
  margin: 0;
  border: none;
}

/* ---- Recruiting section ---- */
.recruiting-section {
  background: var(--navy-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius);
  padding: 3rem 2.5rem;
}

.recruiting-section h2 {
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.recruiting-section p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}
