/* Typography — Component Library
   Author: Nikba Creative Studio
   Used by: hero, sections, forms */

/* ─── Trust badge (hero, sections) ───────────────────────────── */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--color-accent) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-accent) 35%, transparent);
  color: var(--color-accent);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
}
.trust-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.trust-badge > img { width: 14px; height: 14px; object-fit: contain; flex-shrink: 0; }
.trust-badge .flag img {
  width: 18px;
  height: 13px;
  object-fit: cover;
  flex-shrink: 0;
}
.v-dark .trust-badge,
.hero-section .trust-badge {
  background: color-mix(in srgb, var(--color-accent) 15%, transparent);
  border-color: color-mix(in srgb, var(--color-accent) 30%, transparent);
  color: var(--color-accent);
}
.hero-section.v3 .trust-badge {
  background: color-mix(in srgb, var(--color-accent) 12%, transparent);
  border-color: color-mix(in srgb, var(--color-accent) 30%, transparent);
  color: var(--color-accent-dark);
}

/* ─── Hero typography ────────────────────────────────────────── */
.hero-headline {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -1.5px;
}
.hero-headline .highlight { color: var(--color-accent); }
.hero-section.v3 .hero-headline { color: var(--color-primary-dark); }

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,.95);
  max-width: 560px;
}
.hero-section.v3 .hero-sub { color: var(--color-secondary-light); }

.hero-bullet { font-size: 15px; font-weight: 500; color: rgba(255,255,255,.9); }
.hero-section.v3 .hero-bullet { color: var(--color-secondary-light); }
.hero-stat-num { font-size: 22px; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-num span { color: var(--color-accent); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 500; }
.hero-section.v3 .hero-stat-num { color: var(--color-primary-dark); }
.hero-section.v3 .hero-stat-label { color: var(--color-neutral-500); }

/* ─── Section header typography ──────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  background: color-mix(in srgb, var(--color-accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-accent) 28%, transparent);
  color: var(--color-accent-dark);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 20px;
}
.section-eyebrow svg,
.section-eyebrow img { width: 14px; height: 14px; flex-shrink: 0; }
.v-dark .section-eyebrow {
  background: color-mix(in srgb, var(--color-accent) 18%, transparent);
  border-color: color-mix(in srgb, var(--color-accent) 38%, transparent);
  color: var(--color-accent);
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.8px;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}
.section-title span,
.section-title .accent { color: var(--color-accent); }
.v-dark .section-title { color: #fff; }

.section-subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto;
}
.v-dark .section-subtitle { color: rgba(255,255,255,.68); }

/* ─── Form typography ───────────────────────────────────────── */
.form-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -.3px;
  line-height: 1.25;
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 13.5px;
  color: var(--color-neutral-500);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* ─── Card / body typography ────────────────────────────────── */
.card-title { font-size: 18px; font-weight: 700; color: var(--color-text-primary); line-height: 1.3; }
.card-subtitle { font-size: 14px; color: var(--color-text-secondary); line-height: 1.5; }
.dropdown-item-title { font-size: 14px; font-weight: 600; color: var(--color-text-primary); }
.dropdown-item-desc { font-size: 12px; color: var(--color-text-secondary); line-height: 1.4; }
.consultant-name { font-size: 14px; font-weight: 700; color: var(--color-text-primary); }
.consultant-role { font-size: 12px; color: var(--color-neutral-500); }
.cert-title { font-size: 13px; font-weight: 700; color: #fff; }
.cert-sub { font-size: 11px; color: rgba(255,255,255,.6); }
.hero-section.v3 .cert-title { color: var(--color-primary-dark); }
.hero-section.v3 .cert-sub { color: var(--color-neutral-500); }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-headline { font-size: 40px; }
  .section-title { font-size: 32px; }
}
