/* ==========================================================================
   PAGE HERO (reviews) — single-column, centered
   ========================================================================== */
.page-hero { position: relative; padding: 96px 0 80px; color: var(--white); overflow: hidden; isolation: isolate; }
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; z-index: -2; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(130deg, rgba(4, 12, 24, 0.85) 0%, rgba(4, 12, 24, 0.5) 55%, rgba(4, 12, 24, 0.35) 100%); z-index: -1; }
.page-hero__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.page-hero__copy { max-width: 600px; }
.page-hero__breadcrumbs { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 18px; letter-spacing: 0.06em; text-transform: uppercase; }
.page-hero__breadcrumbs a { color: rgba(255,255,255,0.75); }
.page-hero__breadcrumbs a:hover { color: var(--white); }
.page-hero__breadcrumbs [aria-current] { color: var(--white); font-weight: 600; }
.page-hero__title { font-size: 68px; font-weight: 800; line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 18px; }
.page-hero__lead { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.92); max-width: 640px; margin: 0 auto; }
.page-hero--contact .page-hero__grid--single { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.page-hero--contact .page-hero__copy { max-width: 720px; }
.page-hero--contact .page-hero__breadcrumbs { justify-content: center; }

@media (max-width: 1024px) { .page-hero { padding: 72px 0 56px; } .page-hero__title { font-size: 52px; } }
@media (max-width: 768px) { .page-hero { padding: 48px 0 40px; } .page-hero__title { font-size: 36px; } }

/* ==========================================================================
   REVIEWS LIST (3-col grid of testimonial cards)
   ========================================================================== */
.reviews-list { padding: 72px 0 88px; background: var(--white); }
.reviews-list__header { text-align: center; margin-bottom: 40px; }
.reviews-list__eyebrow { display: inline-block; color: var(--brand-primary); font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 12px; }
.reviews-list__title { font-size: 36px; font-weight: 700; line-height: 1.2; color: var(--text-primary); margin-bottom: 16px; }
.reviews-list__summary { display: flex; align-items: center; justify-content: center; gap: 14px; }
.reviews-list__stars { color: #ffc400; font-size: 24px; letter-spacing: 2px; }
.reviews-list__rating { color: var(--text-muted); font-size: 15px; }
.reviews-list__rating strong { color: var(--text-primary); font-size: 18px; }

.reviews-list__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }

.review-card { background: var(--white); border: 1px solid var(--border-light); border-radius: 14px; padding: 26px 26px 22px; display: flex; flex-direction: column; gap: 14px; box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: rgba(192, 0, 20, 0.25); }
.review-card__stars { color: #ffc400; font-size: 16px; letter-spacing: 3px; line-height: 1; }
.review-card__title { font-size: 16px; font-weight: 700; color: var(--text-primary); line-height: 1.35; }
.review-card__body { color: var(--text-muted); font-size: 14px; line-height: 1.65; flex: 1; }
.review-card__meta { display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--border-light); }
.review-card__avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex: 0 0 40px; }
.review-card__meta strong { display: block; color: var(--brand-accent); font-size: 14px; font-weight: 700; }
.review-card__meta span { display: block; color: var(--text-muted); font-size: 12px; }

@media (max-width: 1024px) { .reviews-list__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 768px) {
  .reviews-list { padding: 48px 0 64px; }
  .reviews-list__title { font-size: 26px; }
  .reviews-list__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CONTACT CTA (reviews page)
   Identical to home/contact-cta — a prime promotion candidate. The
   duplicated block stays in the page stylesheet until the promotion pass
   runs on a later clone.
   ========================================================================== */
.contact-cta { position: relative; padding: 88px 0 96px; background: var(--brand-primary); color: var(--white); overflow: hidden; }
.contact-cta__chevron { position: absolute; top: -1px; left: 0; right: 0; height: 32px; background: var(--white); clip-path: polygon(0 0, 50% 100%, 100% 0); }
.contact-cta__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.contact-cta__copy { max-width: 640px; }
.contact-cta__eyebrow { display: inline-block; padding: 6px 14px; background: rgba(255, 255, 255, 0.22); color: var(--white); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 999px; margin-bottom: 18px; }
.contact-cta__title { font-size: 38px; font-weight: 800; line-height: 1.15; margin-bottom: 18px; }
.contact-cta__copy > p { color: rgba(255, 255, 255, 0.94); line-height: 1.65; margin-bottom: 20px; }
.contact-cta__bullets { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 20px; }
.contact-cta__bullets li { position: relative; padding-left: 24px; color: var(--white); font-weight: 600; }
.contact-cta__bullets li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--white); font-weight: 700; }
.contact-cta__card { justify-self: end; width: 100%; max-width: 380px; background: var(--white); color: var(--text-primary); padding: 32px 28px; border-radius: 16px; box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25); text-align: center; }
.contact-cta__card-title { font-size: 22px; font-weight: 700; color: var(--brand-primary); margin-bottom: 8px; }
.contact-cta__card-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; }
.contact-cta__card-phone { display: block; font-size: 32px; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; letter-spacing: 0.01em; }
.contact-cta__card-phone:hover { color: var(--brand-primary); }
.contact-cta__card-btn { width: 100%; }
.contact-cta__card-address { margin-top: 18px; font-size: 13px; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 1024px) { .contact-cta__grid { grid-template-columns: 1fr; gap: 40px; } .contact-cta__card { justify-self: center; } }
@media (max-width: 768px) { .contact-cta { padding: 64px 0 72px; } .contact-cta__title { font-size: 26px; } .contact-cta__bullets { grid-template-columns: 1fr; } .contact-cta__chevron { height: 20px; } }

/* ==========================================================================
   FAQ (reviews page)
   Identical pattern to home/faq — another promotion candidate.
   ========================================================================== */
.faq { padding: 88px 0 96px; background: var(--white); }
.faq__inner { max-width: 900px; margin: 0 auto; }
.faq__header { text-align: center; margin-bottom: 40px; }
.faq__eyebrow { display: inline-block; color: var(--brand-primary); font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 12px; }
.faq__title { font-size: 36px; font-weight: 700; line-height: 1.2; color: var(--text-primary); }

.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq__item { border: 1px solid var(--border-light); border-radius: 12px; overflow: hidden; background: var(--white); transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.faq__item[open] { border-color: rgba(27, 117, 187, 0.35); box-shadow: var(--shadow-card); }
.faq__q { padding: 20px 24px; font-size: 17px; font-weight: 700; color: var(--brand-accent); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; list-style: none; transition: background 0.15s ease; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; flex: 0 0 auto; font-size: 26px; line-height: 1; color: var(--brand-accent); transition: transform 0.2s ease; font-weight: 400; }
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__q:hover { background: rgba(27, 117, 187, 0.04); }
.faq__a { padding: 0 24px 22px; color: var(--text-muted); line-height: 1.7; }
.faq__a p { margin-bottom: 12px; }
.faq__a strong { color: var(--text-primary); }

.faq__outro { text-align: center; margin-top: 36px; font-size: 16px; color: var(--text-muted); }
.faq__outro a { color: var(--brand-primary); font-weight: 700; }
.faq__outro a:hover { color: var(--brand-primary-hover); }

@media (max-width: 768px) {
  .faq { padding: 56px 0 64px; }
  .faq__title { font-size: 26px; }
  .faq__q { padding: 16px 18px; font-size: 15px; }
  .faq__a { padding: 0 18px 18px; font-size: 14px; }
}
