/*
 * AFTraduction — Language pages & hub (premium editorial design).
 * Reuses the exact design language of /traduction-assermentee/ (template-aft-canvas):
 *   ink #10356D · ink-soft #4e5366 · gold #f8a800 · accent-soft #fff4d6 · cream #fdfcfa
 *   Playfair Display (titles/eyebrows/accents) + Inter (body) — loaded site-wide by the child theme.
 * Self-contained under the .aftlp namespace so it never depends on per-block style enqueue.
 */

.aftlp {
    --lp-ink: #10356D;
    --lp-ink-soft: #4e5366;
    --lp-accent: #f8a800;
    --lp-accent-soft: #fff4d6;
    --lp-accent-dark: #e3a700;
    --lp-rule: #e6e6e6;
    --lp-rule-warm: #e8e6df;
    --lp-cream: #ffffff;   /* was #fdfcfa — flattened to pure white so the hero + sections blend seamlessly with the white site header (no beige seam) */
    --lp-serif: 'Playfair Display', Georgia, serif;
    --lp-sans: 'Inter', system-ui, -apple-system, sans-serif;

    font-family: var(--lp-sans);
    color: var(--lp-ink);
    background: #fff;
    overflow-x: clip;
}

.aftlp *,
.aftlp *::before,
.aftlp *::after { box-sizing: border-box; }

/* Neutralise the parent theme's list-style-image glyph inside our sections */
.aftlp ul,
.aftlp ol {
    list-style: none;
    list-style-image: none !important;
    padding-inline-start: 0;
    margin: 0;
}
.aftlp li::before,
.aftlp li::marker { content: none !important; }

.aftlp__inner,
.aftlp__inner--wide,
.aftlp__inner--narrow {
    margin-left: auto;
    margin-right: auto;
}
.aftlp__inner { max-width: 1100px; }
.aftlp__inner--wide { max-width: 1240px; }
.aftlp__inner--narrow { max-width: 880px; }

/* ── Shared section header (eyebrow → title → accent → intro) ──────────── */
.aftlp-sec { padding: 84px 24px; }
.aftlp-sec--cream { background: var(--lp-cream); }
.aftlp-sec--white { background: #fff; }

.aftlp-head {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 52px;
    max-width: 760px;
}
.aftlp-head .aftlp-eyebrow,
.aftlp-head .aftlp-title,
.aftlp-head .aftlp-intro { text-align: center; }
.aftlp-title,
.aftlp-hero__title,
.aftlp-ctaband__title,
.aftlp-offer__title { text-wrap: balance; }
.aftlp-hero__lede,
.aftlp-intro,
.aftlp-hubintro { text-wrap: pretty; }
.aftlp-eyebrow {
    margin: 0 0 8px;
    font-family: var(--lp-serif);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 600;
    font-style: italic;
    color: var(--lp-accent);
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.aftlp-title {
    margin: 0 0 14px;
    font-family: var(--lp-serif);
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 800;
    color: var(--lp-ink);
    letter-spacing: -0.025em;
    line-height: 1.15;
}
.aftlp-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--lp-accent);
}
.aftlp-intro {
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.62;
    color: var(--lp-ink-soft);
    max-width: 64ch;
}

/* ───────────────────────────── HERO ─────────────────────────────────── */
.aftlp-hero {
    position: relative;
    padding: 100px 24px 76px;
    background: var(--lp-cream);   /* flat cream — no halo/glow, seamless top */
    overflow: hidden;
    isolation: isolate;
}
/* (no top rule under the site header — kept seamless, per design) */
.aftlp-hero__inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}
.aftlp-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 18px;
    font-family: var(--lp-serif);
    font-style: italic;
    font-size: clamp(19px, 1.9vw, 24px);
    font-weight: 600;
    color: var(--lp-accent);
    line-height: 1.2;
    letter-spacing: -0.005em;
}
.aftlp-hero__eyebrow::before,
.aftlp-hero__eyebrow::after {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--lp-accent);
    display: inline-block;
}
.aftlp-hero__title {
    font-family: var(--lp-serif);
    font-size: clamp(38px, 6vw, 74px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: var(--lp-ink);
    margin: 0 0 26px;
}
.aftlp-hero__title em {
    font-style: italic;
    font-weight: 500;
    color: var(--lp-ink);
    background: linear-gradient(120deg, transparent 0% 60%, rgba(248, 168, 0, 0.32) 60% 100%);
    padding: 0 0.08em;
}
.aftlp-hero__lede {
    font-size: 18px;
    line-height: 1.65;
    color: var(--lp-ink-soft);
    margin: 0 auto 16px;
    max-width: 62ch;
    text-align: left;   /* flowing prose reads left, not centered (block stays centered) */
}
.aftlp-hero__lede:last-of-type { margin-bottom: 36px; }
.aftlp-hero__lede strong { color: var(--lp-ink); font-weight: 700; }

.aftlp-actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.aftlp-cta,
.aftlp-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 36px;
    border-radius: 999px;
    font-family: var(--lp-sans);
    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;
}
.aftlp-cta {
    background: var(--lp-accent);
    color: var(--lp-ink);
    box-shadow: 0 12px 28px -12px rgba(248, 168, 0, 0.55);
}
.aftlp-cta:hover,
.aftlp-cta:focus-visible {
    background: var(--lp-ink);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 32px -12px rgba(16, 53, 109, 0.45);
}
.aftlp-phone {
    background: transparent;
    color: var(--lp-ink);
    border: 1.5px solid var(--lp-ink);
}
.aftlp-phone:hover,
.aftlp-phone:focus-visible {
    background: var(--lp-ink);
    color: #fff;
    transform: translateY(-2px);
}

.aftlp-hero__stats {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 56px;
    justify-content: center;
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid var(--lp-rule);
}
.aftlp-hero__stats > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}
.aftlp-hero__stats strong {
    font-family: var(--lp-serif);
    font-size: 36px;
    font-weight: 800;
    color: var(--lp-ink);
    line-height: 1;
    letter-spacing: -0.025em;
}
.aftlp-hero__stats strong em {
    font-style: normal;
    color: var(--lp-accent);
    margin-left: 2px;
}
.aftlp-hero__stats span {
    font-size: 11px;
    font-weight: 600;
    color: var(--lp-ink-soft);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* ─────────────────────── FACTS GRID ("en bref") ─────────────────────── */
.aftlp-facts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.aftlp-fact {
    position: relative;
    background: #fff;
    border: 1px solid var(--lp-rule);
    border-radius: 14px;
    padding: 28px 26px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.aftlp-sec--white .aftlp-fact { background: var(--lp-cream); }
.aftlp-fact:hover {
    transform: translateY(-3px);
    border-color: var(--lp-accent);
    box-shadow: 0 16px 30px -16px rgba(16, 53, 109, 0.32);
}
.aftlp-fact__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.aftlp-fact__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(16, 53, 109, 0.08);
    border-radius: 11px;
    font-size: 22px;
    line-height: 1;
}
.aftlp-fact__label {
    margin: 0;
    font-family: var(--lp-serif);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lp-ink);
}
.aftlp-fact__value {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--lp-ink-soft);
}
.aftlp-fact__value strong { color: var(--lp-ink); font-weight: 700; }
.aftlp-fact__src {
    display: block;
    margin-top: 10px;
    font-size: 11.5px;
    font-style: italic;
    color: #98969a;
}

/* ──────────────── EXPERTISE GRID (why X needs expertise) ─────────────── */
.aftlp-exp__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.aftlp-expcard {
    padding: 32px 28px 28px;
    background: #fff;
    border: 1px solid var(--lp-rule);
    border-radius: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.aftlp-sec--white .aftlp-expcard { background: var(--lp-cream); }
.aftlp-expcard:hover {
    transform: translateY(-3px);
    border-color: var(--lp-accent);
    box-shadow: 0 16px 30px -16px rgba(16, 53, 109, 0.32);
}
.aftlp-expcard__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    background: rgba(16, 53, 109, 0.08);
    color: var(--lp-ink);
    border-radius: 12px;
    font-size: 26px;
    line-height: 1;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.aftlp-expcard:hover .aftlp-expcard__icon {
    background: var(--lp-accent-soft);
    color: var(--lp-accent);
    transform: rotate(-6deg);
}
.aftlp-expcard__title {
    margin: 0 0 10px;
    font-family: var(--lp-serif);
    font-size: 19px;
    font-weight: 700;
    color: var(--lp-ink);
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.aftlp-expcard__desc {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--lp-ink-soft);
}
.aftlp-expcard__desc strong { color: var(--lp-ink); font-weight: 700; }

/* ─────────────────────── DOCUMENTS + COUNTRIES ──────────────────────── */
.aftlp-docs__panel {
    background: #fff;
    border: 1px solid var(--lp-rule);
    border-radius: 16px;
    padding: 40px 40px 36px;
    box-shadow: 0 18px 40px -28px rgba(16, 53, 109, 0.25);
}
.aftlp-sec--white .aftlp-docs__panel { background: var(--lp-cream); }
.aftlp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.aftlp-chip {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(16, 53, 109, 0.05);
    border: 1px solid var(--lp-rule);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--lp-ink);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.aftlp-chip:hover {
    background: var(--lp-accent-soft);
    border-color: var(--lp-accent);
    transform: translateY(-2px);
}
.aftlp-docs__note {
    margin: 24px 0 0;
    padding-top: 22px;
    border-top: 1px solid var(--lp-rule);
    font-size: 15px;
    line-height: 1.62;
    color: var(--lp-ink-soft);
}
.aftlp-docs__note strong { color: var(--lp-ink); font-weight: 700; }

/* ─────────────────────── LEGALISATION BY COUNTRY ────────────────────── */
.aftlp-legal__list {
    display: grid;
    gap: 12px;
    max-width: 880px;
    margin: 0 auto;
}
.aftlp-legal__row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--lp-rule);
    border-radius: 12px;
    padding: 20px 24px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.aftlp-sec--white .aftlp-legal__row { background: var(--lp-cream); }
.aftlp-legal__row:hover {
    border-color: var(--lp-accent);
    box-shadow: 0 12px 28px -18px rgba(16, 53, 109, 0.3);
}
.aftlp-legal__country {
    flex-shrink: 0;
    width: 168px;
    font-family: var(--lp-serif);
    font-size: 17px;
    font-weight: 700;
    color: var(--lp-ink);
    line-height: 1.3;
}
.aftlp-legal__body { flex: 1; }
.aftlp-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 7px;
}
.aftlp-badge--apostille { background: var(--lp-accent-soft); color: var(--lp-accent-dark); }
.aftlp-badge--consular  { background: rgba(16, 53, 109, 0.08); color: var(--lp-ink); }
.aftlp-legal__detail {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--lp-ink-soft);
}
.aftlp-legal__note {
    margin: 22px auto 0;
    max-width: 880px;
    font-size: 13.5px;
    font-style: italic;
    color: var(--lp-ink-soft);
    text-align: center;
}

/* ─────────────────── OFFER PANEL (sworn / network) ──────────────────── */
.aftlp-offer { padding: 84px 24px; background: #fff; }
.aftlp-offer__panel {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fff8e7 0%, #fffdf5 100%);
    border: 1px solid var(--lp-accent-soft);
    border-radius: 16px;
    padding: 44px 48px;
    box-shadow: 0 14px 30px -18px rgba(248, 168, 0, 0.28);
}
.aftlp-offer__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: var(--lp-ink);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.aftlp-offer__badge svg { width: 15px; height: 15px; }
.aftlp-offer__title {
    margin: 0 0 14px;
    font-family: var(--lp-serif);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: var(--lp-ink);
    letter-spacing: -0.02em;
    line-height: 1.18;
}
.aftlp-offer__title em { font-style: italic; font-weight: 500; color: var(--lp-accent); }
.aftlp-offer__text { font-size: 16px; line-height: 1.7; color: var(--lp-ink-soft); }
.aftlp-offer__text :first-child { margin-top: 0; }
.aftlp-offer__text :last-child { margin-bottom: 0; }
.aftlp-offer__text strong { color: var(--lp-ink); font-weight: 700; }
.aftlp-offer__text p { margin: 0 0 12px; }

/* ───────────────────────────── FAQ ──────────────────────────────────── */
.aftlp-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 880px;
    margin: 0 auto;
}
.aftlp-faq__item {
    background: #fff;
    border: 1px solid var(--lp-rule);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.aftlp-faq__item:hover { border-color: var(--lp-accent); }
.aftlp-faq__item[open] {
    border-color: var(--lp-accent);
    box-shadow: 0 12px 28px -16px rgba(248, 168, 0, 0.3);
}
.aftlp-faq__q {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--lp-serif);
    font-size: 17.5px;
    font-weight: 700;
    color: var(--lp-ink);
    letter-spacing: -0.01em;
    line-height: 1.3;
    user-select: none;
}
.aftlp-faq__q::-webkit-details-marker { display: none; }
.aftlp-faq__q::marker { content: none; }
.aftlp-faq__qicon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--lp-accent-soft);
    color: var(--lp-accent);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.25s ease;
}
.aftlp-faq__qicon svg { width: 14px; height: 14px; transition: transform 0.35s ease; }
.aftlp-faq__item[open] .aftlp-faq__qicon { background: var(--lp-accent); color: #fff; transform: rotate(180deg); }
.aftlp-faq__item[open] .aftlp-faq__qicon svg { transform: rotate(45deg); }
.aftlp-faq__a {
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--lp-ink-soft);
}
.aftlp-faq__a p:first-child { margin-top: 0; }
.aftlp-faq__a p:last-child { margin-bottom: 0; }
.aftlp-faq__a strong { color: var(--lp-ink); font-weight: 700; }
.aftlp-faq__a a { color: var(--lp-accent); text-decoration: underline; text-underline-offset: 3px; }
.aftlp-faq__a a:hover { color: var(--lp-ink); }

/* ─────────────────────────── CTA BAND ───────────────────────────────── */
.aftlp-ctaband {
    position: relative;
    padding: 92px 24px 100px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(800px 420px at 12% 100%, rgba(248, 168, 0, 0.22), transparent 65%),
        radial-gradient(900px 420px at 88% 0%, rgba(16, 53, 109, 0.07), transparent 60%),
        var(--lp-cream);
    color: var(--lp-ink);
    text-align: center;
}
.aftlp-ctaband::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--lp-accent) 50%, transparent);
    opacity: 0.55;
}
.aftlp-ctaband__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.aftlp-ctaband__eyebrow {
    margin: 0 0 12px;
    font-family: var(--lp-serif);
    font-style: italic;
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 600;
    color: var(--lp-accent);
}
.aftlp-ctaband__title {
    margin: 0 0 14px;
    font-family: var(--lp-serif);
    font-size: clamp(30px, 4.4vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--lp-ink);
}
.aftlp-ctaband__title em { font-style: italic; font-weight: 500; color: var(--lp-accent); }
.aftlp-ctaband__sub {
    margin: 0 0 28px;
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--lp-ink-soft);
}

/* ─────────────────── SOURCES + INTERNAL LINKS ───────────────────────── */
.aftlp-foot { padding: 64px 24px 72px; background: #fff; border-top: 1px solid var(--lp-rule); }
.aftlp-foot__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; }
.aftlp-foot__h {
    margin: 0 0 14px;
    font-family: var(--lp-serif);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lp-ink);
}
.aftlp-foot__sources { font-size: 13.5px; line-height: 1.7; color: var(--lp-ink-soft); }
.aftlp-foot__sources em { font-style: italic; }
.aftlp-linklist { display: flex; flex-wrap: wrap; gap: 10px; }
.aftlp-linklist a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid var(--lp-rule);
    background: var(--lp-cream);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--lp-ink);
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.aftlp-linklist a::before { content: "→"; color: var(--lp-accent); font-weight: 700; }
.aftlp-linklist a:hover { background: var(--lp-accent-soft); border-color: var(--lp-accent); transform: translateY(-2px); }

/* ════════════════════════════ HUB ═══════════════════════════════════ */
.aftlp-hub__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.aftlp-langcard {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--lp-rule);
    border-radius: 16px;
    padding: 28px 28px 26px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.aftlp-sec--white .aftlp-langcard { background: var(--lp-cream); }
.aftlp-langcard::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--lp-accent);
    transform: scaleX(0.15);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.aftlp-langcard:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 53, 109, 0.18);
    box-shadow: 0 22px 44px -24px rgba(16, 53, 109, 0.34);
}
.aftlp-langcard:hover::before { transform: scaleX(1); }
.aftlp-langcard__top { display: flex; align-items: center; gap: 14px; }
.aftlp-langcard__flag {
    width: 46px; height: 34px;
    border-radius: 5px;
    object-fit: cover;
    box-shadow: 0 2px 8px -2px rgba(0,0,0,0.25);
    flex-shrink: 0;
    background: var(--lp-rule);
}
.aftlp-langcard__names { display: flex; flex-direction: column; gap: 1px; }
.aftlp-langcard__name {
    font-family: var(--lp-serif);
    font-size: 22px;
    font-weight: 800;
    color: var(--lp-ink);
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.aftlp-langcard__native { font-size: 13px; color: var(--lp-ink-soft); }
.aftlp-langcard__desc { margin: 0; font-size: 14px; line-height: 1.55; color: var(--lp-ink-soft); flex: 1; }
.aftlp-langcard__foot {
    display: flex; align-items: center; justify-content: flex-start;
    margin-top: 6px; padding-top: 14px; border-top: 1px solid var(--lp-rule);
}
.aftlp-langcard__badge {
    font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 999px;
}
.aftlp-langcard__badge--sworn { background: var(--lp-accent-soft); color: var(--lp-accent-dark); }
.aftlp-langcard__badge--net { background: rgba(16, 53, 109, 0.08); color: var(--lp-ink); }
.aftlp-langcard__go { font-size: 13px; font-weight: 700; color: var(--lp-accent); }

/* Editorial intro block on the hub */
.aftlp-hubintro {
    max-width: 820px; margin: 0 auto;
    font-size: 17px; line-height: 1.7; color: var(--lp-ink-soft);
    text-align: left;
}
.aftlp-hubintro strong { color: var(--lp-ink); font-weight: 700; }

/* ───────────────────────── RESPONSIVE ───────────────────────────────── */
@media (max-width: 980px) {
    .aftlp-facts__grid,
    .aftlp-exp__grid,
    .aftlp-hub__grid { grid-template-columns: repeat(2, 1fr); }
    .aftlp-foot__inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
    .aftlp-hero { padding: 76px 20px 56px; }
    .aftlp-sec { padding: 56px 18px; }
    .aftlp-actions .aftlp-cta,
    .aftlp-actions .aftlp-phone { flex: 1 1 100%; }
    .aftlp-hero__stats { gap: 30px; }
    .aftlp-hero__stats strong { font-size: 30px; }
    .aftlp-offer__panel { padding: 32px 26px; }
    .aftlp-docs__panel { padding: 30px 24px; }
    .aftlp-legal__row { flex-direction: column; gap: 8px; }
    .aftlp-legal__country { width: auto; }
}
@media (max-width: 560px) {
    .aftlp-facts__grid,
    .aftlp-exp__grid,
    .aftlp-hub__grid { grid-template-columns: 1fr; }
    .aftlp-hero__title { font-size: clamp(31px, 9vw, 42px); }
}
