/* Provider Program — supplemental styles only.
   The ANA template style.css handles header, footer, nav, base typography.
   This file ONLY adds provider-specific components. */

/* ── Hero section ── */
.hero {
  background: linear-gradient(135deg, #0f2540 0%, #1a3a5c 100%);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
}
.hero h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
  color: #fff;
}
.hero .tagline {
  font-size: 19px;
  max-width: 680px;
  margin: 0 auto 16px;
  opacity: 0.95;
  line-height: 1.6;
  color: #fff;
}
.hero .hero-text {
  font-size: 16px;
  max-width: 720px;
  margin: 0 auto 32px;
  opacity: 0.85;
  line-height: 1.7;
  color: #fff;
}
.hero .btn-primary {
  display: inline-block;
  background: var(--ac, #6a3800);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.hero .btn-primary:hover { background: var(--ac, #7a4400); text-decoration: none; }

@media (max-width: 768px) {
  .hero { padding: 48px 20px; }
  .hero h1 { font-size: 26px; }
  .hero .tagline { font-size: 16px; }
}

/* ── Stats bar ── */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 40px 24px;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat .number { font-size: 28px; font-weight: 700; color: #0f2540; display: block; }
.stat .label { font-size: 13px; color: #666; text-transform: uppercase; letter-spacing: 0.5px; }

@media (max-width: 600px) {
  .stats-bar { gap: 24px; padding: 24px 16px; }
  .stat .number { font-size: 22px; }
}

/* ── Container ── */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 48px 0; }
.section-alt { background: #f8f8f6; }

/* ── Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 28px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.card h3 { margin: 0 0 12px; font-size: 18px; color: #0f2540; }
.card p { color: #555; font-size: 15px; line-height: 1.6; margin: 0; }

/* ── Pricing tables ── */
.pricing-group { margin-bottom: 36px; }
.pricing-group h3 { font-size: 20px; color: #0f2540; margin-bottom: 12px; }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th {
  background: #0f2540;
  color: #fff;
  padding: 10px 16px;
  text-align: left;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-table td { padding: 10px 16px; border-bottom: 1px solid #e0e0e0; font-size: 15px; }
.pricing-table tr:hover { background: #f5f5f3; }
.pricing-table .price { font-weight: 600; color: var(--ac, #6a3800); }

/* ── Callout box ── */
.callout {
  background: #f0f4f8;
  border-left: 4px solid #3d5a80;
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
}
.callout p { margin: 0; }
.callout strong { color: #0f2540; }

/* ── Buttons (non-hero) ── */
.btn { display: inline-block; padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: 15px; text-decoration: none; transition: background 0.2s; }
.btn-primary { background: var(--ac, #6a3800); color: #fff; }
.btn-primary:hover { background: var(--ac, #7a4400); text-decoration: none; }
.btn-secondary { background: #fff; color: #0f2540; border: 2px solid #0f2540; }
.btn-secondary:hover { background: #0f2540; color: #fff; text-decoration: none; }

/* ── Lead text ── */
.lead { font-size: 17px; color: #444; line-height: 1.7; margin-bottom: 20px; }

/* ── FAQ items ── */
.faq-item { margin-bottom: 32px; }
.faq-item h3 { font-size: 18px; color: #0f2540; margin-bottom: 8px; }
.faq-item p { color: #444; line-height: 1.7; }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; color: #1a1a1a; font-size: 15px; }
.form-group .hint { font-size: 13px; color: #777; margin: 2px 0 6px; font-weight: normal; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #3d5a80;
  box-shadow: 0 0 0 3px rgba(61,90,128,0.1);
}
.form-group textarea { min-height: 80px; resize: vertical; }

.checkbox-group { display: flex; flex-wrap: wrap; gap: 12px; }
.checkbox-group label { font-weight: normal; font-size: 14px; display: flex; align-items: center; gap: 6px; }

.form-agreement { margin: 24px 0; display: flex; align-items: flex-start; gap: 10px; }
.form-agreement input { margin-top: 4px; }
.form-agreement label { font-weight: normal; font-size: 14px; line-height: 1.5; }

.form-note { margin-top: 16px; font-size: 13px; color: #777; }

/* ── Step numbers ── */
.step { margin-bottom: 32px; }
.step h3 { font-size: 18px; color: #0f2540; }
.step p { color: #444; }

/* ── Two column layout ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 32px 0; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }
