/* ============================================================
   brand-extra.css — Pricing page + TrustedBy band
   Premium Navy + Gold. Link AFTER style.css.
   Tokens expected from style.css: --navy, --blue, --gold,
   --gold-dark, --gold-light, --text-muted. Fallbacks below.
   ============================================================ */
:root {
  --be-navy: var(--navy, #0A5640);
  --be-blue: var(--blue, #1C8A5E);
  --be-gold: var(--gold, #0A5640);
  --be-gold-dark: var(--gold-dark, #9E7A28);
  --be-gold-light: var(--gold-light, #E3C778);
  --be-muted: var(--text-muted, #5A6678);
}

/* ── Page hero (navy gradient) ───────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--be-navy) 0%, #0E5C44 55%, var(--be-blue) 130%);
  color: #fff;
  padding: clamp(54px, 6vw, 84px) 24px clamp(38px, 4vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 78% 10%, rgba(196, 154, 60, 0.18), transparent 60%),
    radial-gradient(50% 70% at 12% 100%, rgba(28, 91, 168, 0.35), transparent 60%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.page-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--be-gold-light);
  margin: 0 0 16px;
}
.page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 3.7rem);
  line-height: 1.08;
  margin: 0 0 18px;
  color: #fff;
}
.page-hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 660px;
  margin: 0 auto;
}

/* ── Packages grid ───────────────────────────────────────── */
.pricing-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 84px) 24px clamp(24px, 4vw, 48px);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e7ecf3;
  border-radius: 20px;
  padding: 34px 28px 30px;
  box-shadow: 0 14px 40px rgba(12, 30, 62, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(12, 30, 62, 0.13);
  border-color: #d9e1ec;
}

.pricing-card--featured {
  border-color: var(--be-gold);
  box-shadow: 0 26px 64px rgba(196, 154, 60, 0.22);
  background: linear-gradient(180deg, #fffdf7 0%, #ffffff 42%);
}
.pricing-card--featured:hover {
  box-shadow: 0 32px 72px rgba(196, 154, 60, 0.3);
}

.pricing-card__flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--be-gold) 0%, var(--be-gold-dark) 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(196, 154, 60, 0.4);
  white-space: nowrap;
}

.pricing-card__tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--be-blue);
  background: rgba(28, 91, 168, 0.09);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.pricing-card--featured .pricing-card__tag {
  color: var(--be-gold-dark);
  background: rgba(196, 154, 60, 0.14);
}

.pricing-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.42rem;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--be-navy);
}
.pricing-card__desc {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--be-muted);
  margin: 0 0 18px;
}
.pricing-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--be-gold-dark);
  margin: 0 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eef2f7;
}

.pricing-card__list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
}
.pricing-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #2a3954;
}
.pricing-card__list svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--be-gold);
}

.pricing-card__btn {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  padding: 13px 20px;
  border-radius: 12px;
  border: 1.5px solid var(--be-navy);
  color: var(--be-navy);
  background: transparent;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.pricing-card__btn:hover {
  background: var(--be-navy);
  color: #fff;
  transform: translateY(-2px);
}
.pricing-card__btn--gold {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--be-gold) 0%, var(--be-gold-dark) 100%);
  box-shadow: 0 10px 26px rgba(196, 154, 60, 0.34);
}
.pricing-card__btn--gold:hover {
  background: linear-gradient(135deg, var(--be-gold-light) 0%, var(--be-gold) 100%);
  color: #fff;
}

/* ── How pricing works ───────────────────────────────────── */
.pricing-how {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) 24px;
}
.pricing-how__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  text-align: center;
  color: var(--be-navy);
  margin: 0 0 36px;
}
.pricing-faq {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 820px) {
  .pricing-faq { grid-template-columns: 1fr; }
}
.pricing-faq__item {
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-left: 3px solid var(--be-gold);
  border-radius: 14px;
  padding: 22px 22px 20px;
}
.pricing-faq__q {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--be-navy);
  margin: 0 0 9px;
}
.pricing-faq__a {
  font-size: 0.93rem;
  line-height: 1.62;
  color: var(--be-muted);
  margin: 0;
}

/* ── CTA band (navy) ─────────────────────────────────────── */
.pricing-cta {
  margin: clamp(40px, 6vw, 72px) auto 0;
  padding: 0 24px clamp(56px, 8vw, 96px);
  max-width: 1180px;
}
.pricing-cta__inner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--be-navy) 0%, #0E5C44 100%);
  border-radius: 26px;
  padding: clamp(44px, 7vw, 76px) 28px;
  text-align: center;
  color: #fff;
}
.pricing-cta__inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 85% at 85% 0%, rgba(196, 154, 60, 0.22), transparent 60%);
  pointer-events: none;
}
.pricing-cta__eyebrow {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--be-gold-light);
  margin: 0 0 14px;
}
.pricing-cta__title {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin: 0 0 14px;
  color: #fff;
}
.pricing-cta__text {
  position: relative;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 auto 28px;
}
.pricing-cta__actions {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.pricing-cta__btn {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: 12px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.pricing-cta__btn--gold {
  background: linear-gradient(135deg, var(--be-gold) 0%, var(--be-gold-dark) 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(196, 154, 60, 0.4);
}
.pricing-cta__btn--gold:hover { transform: translateY(-3px); }
.pricing-cta__btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.pricing-cta__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

/* ============================================================
   TrustedBy band
   ============================================================ */
.trustedby {
  background: #f7f9fc;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
  padding: clamp(44px, 6vw, 72px) 24px;
}
.trustedby__inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}
.trustedby__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  color: var(--be-navy);
  margin: 0 0 28px;
}
.trustedby__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: clamp(34px, 5vw, 52px);
}
.trustedby-chip {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--be-navy);
  background: #fff;
  border: 1px solid #e3e9f1;
  border-radius: 999px;
  padding: 9px 18px;
  box-shadow: 0 4px 12px rgba(12, 30, 62, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.trustedby-chip:hover {
  transform: translateY(-2px);
  border-color: var(--be-gold);
  color: var(--be-gold-dark);
}

.trustedby__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 700px) {
  .trustedby__stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
.trustedby-stat__num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 4.6vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--be-gold);
  display: inline-flex;
  align-items: baseline;
}
.trustedby-stat__suffix {
  color: var(--be-gold-dark);
  margin-left: 1px;
}
.trustedby-stat__label {
  margin-top: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--be-muted);
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card,
  .pricing-card__btn,
  .pricing-cta__btn,
  .trustedby-chip { transition: none; }
}
