/*
 * Block: aft/hero-sworn (text-only variant)
 * No image, no live widget, no dashed lines — just editorial typography.
 */

.aft-sworn-hero {
    --aft-h-ink: #10356D;
    --aft-h-ink-soft: #4e5366;
    --aft-h-accent: #f8a800;
    --aft-h-accent-soft: #fff4d6;
    --aft-h-accent-dark: #e3a700;
    --aft-h-rule: #e6e6e6;
    --aft-h-cream: #fdfcfa;

    position: relative;
    padding: 100px 24px 72px;
    background:
        radial-gradient(1200px 600px at 12% 0%, rgba(248, 168, 0, 0.10), transparent 60%),
        radial-gradient(1000px 700px at 100% 100%, rgba(16, 53, 109, 0.06), transparent 55%),
        var(--aft-h-cream);
    overflow: hidden;
    isolation: isolate;
}

.aft-sworn-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--aft-h-accent) 50%, transparent);
    opacity: 0.6;
}

.aft-sworn-hero__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.aft-sworn-hero__text--centered {
    text-align: center;
    margin: 0 auto 64px;
    max-width: 820px;
}

.aft-sworn-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 18px;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    text-transform: none;
    letter-spacing: -0.005em;
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 600;
    color: var(--aft-h-accent);
    line-height: 1.2;
}

.aft-sworn-hero__eyebrow::before,
.aft-sworn-hero__eyebrow::after {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--aft-h-accent);
    display: inline-block;
}

.aft-sworn-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(40px, 6.4vw, 80px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--aft-h-ink);
    margin: 0 0 28px;
}

.aft-sworn-hero__title em {
    font-style: italic;
    font-weight: 500;
    color: var(--aft-h-ink);
    background: linear-gradient(120deg, transparent 0% 60%, rgba(248, 168, 0, 0.32) 60% 100%);
    padding: 0 0.08em;
}

.aft-sworn-hero__lede {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.65;
    color: var(--aft-h-ink-soft);
    margin: 0 auto 16px;
    max-width: 62ch;
}

.aft-sworn-hero__lede:last-of-type { margin-bottom: 36px; }

.aft-sworn-hero__actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin: 0 0 44px;
}

.aft-sworn-hero__actions .afth-cta,
.aft-sworn-hero__actions .afth-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 36px;
    border-radius: 999px;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.aft-sworn-hero__actions .afth-cta {
    background: var(--aft-h-accent);
    color: var(--aft-h-ink);
    box-shadow: 0 12px 28px -12px rgba(248, 168, 0, 0.55);
}

.aft-sworn-hero__actions .afth-cta:hover,
.aft-sworn-hero__actions .afth-cta:focus-visible {
    background: var(--aft-h-ink);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 32px -12px rgba(16, 53, 109, 0.45);
}

.aft-sworn-hero__actions .afth-phone {
    background: transparent;
    color: var(--aft-h-ink);
    border: 1.5px solid var(--aft-h-ink);
}

.aft-sworn-hero__actions .afth-phone:hover,
.aft-sworn-hero__actions .afth-phone:focus-visible {
    background: var(--aft-h-ink);
    color: #fff;
    transform: translateY(-2px);
}

.aft-sworn-hero__stats {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 56px;
    justify-content: center;
    padding-top: 32px;
    border-top: 1px solid var(--aft-h-rule);
}

.aft-sworn-hero__stats > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.aft-sworn-hero__stats strong {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--aft-h-ink);
    line-height: 1;
    letter-spacing: -0.025em;
}

.aft-sworn-hero__stats strong em {
    font-style: normal;
    color: var(--aft-h-accent);
    margin-left: 2px;
}

.aft-sworn-hero__stats span {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--aft-h-ink-soft);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* ── Explainer box (kept) ───────────────────────────────────────────── */

.aft-sworn-hero__explainer {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fff8e7 0%, #fffdf5 100%);
    border: 1px solid var(--aft-h-accent-soft);
    border-radius: 16px;
    padding: 38px 44px 38px 116px;
    box-shadow: 0 12px 28px -16px rgba(248, 168, 0, 0.25);
}

.aft-sworn-hero__explainer::before {
    content: "?";
    position: absolute;
    left: 36px;
    top: 24px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 72px;
    font-style: italic;
    font-weight: 500;
    color: var(--aft-h-accent);
    opacity: 0.42;
    line-height: 1;
}

.aft-sworn-hero__explainer h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--aft-h-ink);
    margin: 0 0 14px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.aft-sworn-hero__explainer h2 em {
    font-weight: 500;
    color: var(--aft-h-ink-soft);
}

.aft-sworn-hero__explainer p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--aft-h-ink-soft);
    margin: 0 0 10px;
}

.aft-sworn-hero__explainer p:last-child { margin-bottom: 0; }

.aft-sworn-hero__explainer strong {
    color: var(--aft-h-ink);
    font-weight: 700;
}

@media (max-width: 720px) {
    .aft-sworn-hero { padding: 72px 20px 56px; }
    .aft-sworn-hero__actions .afth-cta,
    .aft-sworn-hero__actions .afth-phone { flex: 1 1 100%; }
    .aft-sworn-hero__stats { gap: 32px; padding-top: 26px; }
    .aft-sworn-hero__stats strong { font-size: 32px; }
    .aft-sworn-hero__explainer { padding: 30px 26px 30px 88px; }
    .aft-sworn-hero__explainer::before { left: 22px; top: 18px; font-size: 56px; }
}

@media (max-width: 420px) {
    .aft-sworn-hero { padding: 56px 16px 44px; }
    .aft-sworn-hero__title { font-size: clamp(32px, 9vw, 44px); }
}
