/* =============================================================================
   TESTIMONIALS PAGE
   ============================================================================= */

/* ── Page Hero ─────────────────────────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 65%, #1e4a6e 100%);
    padding: calc(var(--topbar-h) + var(--nav-h) + 64px) 0 72px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
}
.page-hero-glow {
    position: absolute;
    top: -120px; right: -120px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.14) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero-inner { position: relative; }
.page-hero .pill-label { background: rgba(212,175,55,0.12); border-color: rgba(212,175,55,0.25); }
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin: 16px 0 24px;
}
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }

/* ── Intro Section ─────────────────────────────────────────────────────────── */
.test-intro { padding: 72px 0 40px; }
.test-intro-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.test-stats-row {
    display: flex; justify-content: center; gap: 48px; margin-top: 40px;
}
.test-stat { text-align: center; }
.test-stat-number {
    display: block;
    font-family: var(--font-display); font-size: 42px; font-weight: 700;
    color: var(--gold); line-height: 1;
}
.test-stat-label {
    display: block; font-family: var(--font-ui); font-size: 12px;
    font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-muted); margin-top: 6px;
}

/* ── Full Testimonials Grid ────────────────────────────────────────────────── */
.test-full { padding: 40px 0 72px; }
.test-full-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.test-card-full {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 4px; padding: 28px; display: flex; flex-direction: column;
    gap: 16px; transition: box-shadow 0.2s, transform 0.2s;
}
.test-card-full:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.tcf-stars { display: flex; gap: 3px; }

.tcf-text {
    font-family: var(--font-body); font-size: 15px; line-height: 1.65;
    color: var(--text-body); font-style: italic; flex: 1;
    margin: 0; border: none; padding: 0;
}
.tcf-text::before { content: '\201C'; color: var(--gold); font-size: 24px; line-height: 0; vertical-align: -8px; margin-right: 2px; }

.tcf-footer {
    display: flex; align-items: center; gap: 12px; padding-top: 16px;
    border-top: 1px solid var(--border);
}
.tcf-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--navy); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 16px; font-weight: 700;
    flex-shrink: 0;
}
.tcf-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.tcf-name {
    font-family: var(--font-ui); font-size: 13px; font-weight: 700; color: var(--navy);
}
.tcf-role {
    font-family: var(--font-ui); font-size: 11px; color: var(--text-muted);
}
.tcf-service {
    font-family: var(--font-ui); font-size: 10px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--gold); background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.25); border-radius: 100px;
    padding: 3px 10px; white-space: nowrap;
}

/* ── Review Platforms ──────────────────────────────────────────────────────── */
.test-platforms {
    background: var(--off-white); padding: 64px 0;
    border-top: 1px solid var(--border);
}
.tp-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.tp-buttons {
    display: flex; justify-content: center; gap: 16px; margin-top: 32px;
    flex-wrap: wrap;
}
.tp-btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-ui); font-size: 14px; font-weight: 700;
    letter-spacing: 0.05em; padding: 14px 28px; border-radius: 2px;
    transition: all 0.2s; text-decoration: none;
}
.tp-btn-google { background: #fff; border: 2px solid #4285F4; color: #4285F4; }
.tp-btn-google:hover { background: #4285F4; color: #fff; }
.tp-btn-fb { background: #fff; border: 2px solid #1877F2; color: #1877F2; }
.tp-btn-fb:hover { background: #1877F2; color: #fff; }

/* ── Page CTA Band ─────────────────────────────────────────────────────────── */
.page-cta-band { background: var(--navy-dark); padding: 72px 0; }
.pcta-inner { text-align: center; }
.pcta-title {
    font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px);
    font-weight: 700; color: var(--white); margin-bottom: 12px;
}
.pcta-sub {
    font-family: var(--font-body); font-size: 16px;
    color: rgba(255,255,255,0.7); margin-bottom: 32px;
}
.pcta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 1024px) {
    .test-full-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .test-intro { padding: 48px 0 32px; }
    .test-stats-row { gap: 32px; }
    .test-stat-number { font-size: 36px; }
    .test-full { padding: 32px 0 56px; }
    .test-full-grid { grid-template-columns: 1fr; gap: 16px; }
    .test-platforms { padding: 48px 0; }
    .page-cta-band { padding: 56px 0; }
    .tp-buttons { flex-direction: column; align-items: center; }
    .tp-btn { width: 100%; max-width: 280px; justify-content: center; }
}
