/**
 * page-front.css — Homepage specific styles
 * Loaded only on the front page via matyshkin_enqueue_assets().
 *
 * Migrated from sx-main-override.php mu-plugin (sxn-* classes).
 */

/* ── Layout reset for homepage ── */
body.home main,
body.home main.sx-main-host {
    display: block !important;
    align-items: unset !important;
    justify-content: unset !important;
    text-align: left !important;
    padding: 0 !important;
    min-height: unset !important;
}

body.home main article {
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.home article h2,
body.home article h3 {
    border-left: none !important;
    padding-left: 0 !important;
    margin-top: 0 !important;
}

body.home .entry-title { display: none !important; }
body.home .page-header  { display: none !important; }

/* ── Tokens ── */
.sx-home {
    --navy:         #05111f;
    --navy-mid:     #0a2540;
    --navy-light:   #0f3460;
    --gold:         #1a56db;
    --gold-lt:      #7da8f5;
    --gold-pale:    #e8effc;
    --blue:         #1a56db;
    --cream:        #f9f9f7;
    --white:        #fff;
    --text:         #1a202c;
    --muted:        #4a5568;
    --border:       #e2e8f0;
    --border-dk:    #1e3a5f;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.6;
}

.sx-home * { box-sizing: border-box; }
.sx-home img { max-width: 100%; height: auto; }

.sxn-w {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 44px);
}

/* ── Typography ── */
.sx-home h1,
.sx-home h2,
.sx-home h3 {
    font-family: 'Poppins', Inter, sans-serif;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 14px;
    color: var(--navy);
}

.sx-home h2 { font-size: clamp(1.65rem, 3.2vw, 2.4rem); font-weight: 700; }
.sx-home h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.sx-home p  { margin: 0 0 14px; color: var(--muted); line-height: 1.7; }
.sx-home p:last-child { margin-bottom: 0; }
.sx-home strong { color: var(--text); }

/* ── Eyebrow ── */
.sxn-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.sxn-eyebrow--lt { color: var(--gold-lt); }

/* ── Buttons ── */
.sxn-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.93rem;
    padding: 13px 26px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.18s;
    white-space: nowrap;
    border: 2px solid transparent;
    cursor: pointer;
}

.sxn-btn--primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.sxn-btn--primary:hover { background: #1342b5; border-color: #1342b5; transform: translateY(-1px); }
.sxn-btn--gold    { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.sxn-btn--gold:hover { background: #1342b5; transform: translateY(-1px); }
.sxn-btn--ghost   { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.sxn-btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.65); }
.sxn-btn--outline { background: transparent; color: var(--navy); border-color: var(--border); }
.sxn-btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.sxn-btn--light   { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.22); }
.sxn-btn--light:hover { background: rgba(255,255,255,.18); }
.sxn-btn--wa      { background: #25d366; color: #fff; border-color: #25d366; }
.sxn-btn--wa:hover { filter: brightness(.92); transform: translateY(-1px); }

/* ── Section base ── */
.sxn-sec { padding: clamp(52px, 7vw, 88px) 0; }
.sxn-sec__hd { margin-bottom: 48px; }
.sxn-sec__hd h2 { margin-top: 8px; }
.sxn-sec__sub { font-size: 1rem; color: var(--muted); max-width: 560px; margin-top: 8px; }
.sxn-center { text-align: center; }
.sxn-center .sxn-sec__sub { margin-left: auto; margin-right: auto; }

/* ════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════ */
.sxn-hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 10vw, 112px) 0 clamp(56px, 8vw, 96px);
}

.sxn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(26,86,219,.07) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 80% 40%, rgba(26,86,219,.2), transparent 65%);
}

.sxn-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(26,86,219,.15) 100%);
}

.sxn-hero .sxn-w {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

@media (max-width: 900px) { .sxn-hero .sxn-w { grid-template-columns: 1fr; } }

.sxn-hero__body { position: relative; z-index: 1; }

.sxn-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}

.sxn-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 4px rgba(52,211,153,.22);
    animation: sxn-pulse 2.2s ease-in-out infinite;
}

@keyframes sxn-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(52,211,153,.22); }
    50%       { box-shadow: 0 0 0 9px rgba(52,211,153,.07); }
}

.sx-home .sxn-hero h1,
.sxn-hero__h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: #fff !important;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 22px;
    max-width: 680px;
}

.sxn-hero__h1 em { font-style: normal; color: #7da8f5 !important; }

.sxn-hero__sub {
    font-size: clamp(0.97rem, 1.8vw, 1.1rem);
    color: rgba(255,255,255,.76);
    max-width: 580px;
    margin-bottom: 32px;
    line-height: 1.72;
}

.sxn-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }

.sxn-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 22px;
    font-size: 0.79rem;
    color: rgba(255,255,255,.68);
}

.sxn-hero__trust span::before { content: '✓ '; color: #34d399; font-weight: 700; }

/* Decorative seal */
.sxn-hero__decor { position: relative; z-index: 1; width: 260px; height: 260px; flex-shrink: 0; }
@media (max-width: 900px) { .sxn-hero__decor { display: none; } }

.sxn-seal { position: relative; width: 260px; height: 260px; }

.sxn-seal__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sxn-seal__ring--1 { width: 260px; height: 260px; border-color: rgba(26,86,219,.12); }
.sxn-seal__ring--2 { width: 200px; height: 200px; border-color: rgba(26,86,219,.22); }
.sxn-seal__ring--3 { width: 140px; height: 140px; border-width: 2px; border-color: rgba(26,86,219,.38); }

.sxn-seal__spokes {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: repeating-conic-gradient(
        from 0deg at 50% 50%,
        rgba(26,86,219,.07) 0deg 1.5deg,
        transparent 1.5deg 22.5deg
    );
}

.sxn-seal__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #1342b5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: -0.02em;
    z-index: 1;
}

/* ════════════════════════════════════════════════════════
   CREDIBILITY STRIP
   ════════════════════════════════════════════════════════ */
.sxn-cred {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 13px 0;
}

.sxn-cred__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 18px;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.02em;
}

.sxn-cred__sep { color: var(--gold); font-weight: 900; font-size: 0.65rem; }
@media (max-width: 640px) { .sxn-cred__sep { display: none; } }

/* ════════════════════════════════════════════════════════
   SITUATIONS
   ════════════════════════════════════════════════════════ */
.sxn-situations { background: var(--white); }

.sxn-sit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 820px) { .sxn-sit-grid { grid-template-columns: 1fr; gap: 20px; } }

.sxn-sit { border-top: 3px solid var(--gold); padding-top: 22px; }

.sxn-sit__n {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(10,37,64,.07);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.04em;
}

.sxn-sit h3 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.sxn-sit p  { font-size: 0.89rem; color: var(--muted); margin: 0; }

/* ════════════════════════════════════════════════════════
   SERVICES — 2-col editorial
   ════════════════════════════════════════════════════════ */
.sxn-services { background: var(--cream); }

.sxn-services__inner {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
}

@media (max-width: 820px) { .sxn-services__inner { grid-template-columns: 1fr; } }

.sxn-services__left p { margin-bottom: 24px; }

.sxn-svc-list { display: flex; flex-direction: column; }

.sxn-svc {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.sxn-svc:first-child { border-top: 1px solid var(--border); }

.sxn-svc__n {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.06em;
    flex-shrink: 0;
    padding-top: 2px;
    min-width: 22px;
}

.sxn-svc__body strong {
    display: block;
    color: var(--navy);
    font-size: 0.97rem;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.sxn-svc__body p { font-size: 0.87rem; margin: 0; color: var(--muted); }

/* ════════════════════════════════════════════════════════
   FRAMEWORK — dark full-bleed
   ════════════════════════════════════════════════════════ */
.sxn-framework {
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sxn-framework::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,.012) 0px,
        rgba(255,255,255,.012) 1px,
        transparent 1px,
        transparent 48px
    );
}

.sxn-framework__top {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: clamp(28px, 4vw, 56px);
    margin-bottom: 48px;
    align-items: start;
}

@media (max-width: 820px) { .sxn-framework__top { grid-template-columns: 1fr; } }

.sxn-framework__intro h2 { color: #fff; margin-top: 8px; }
.sxn-framework__intro p  { color: rgba(255,255,255,.7); }

.sxn-pull {
    margin: 0;
    padding: 24px 24px 24px 20px;
    border-left: 3px solid var(--gold);
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255,255,255,.8);
    line-height: 1.65;
    background: rgba(255,255,255,.04);
    border-radius: 0 8px 8px 0;
}

.sxn-fw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 900px) { .sxn-fw-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .sxn-fw-grid { grid-template-columns: 1fr; } }

.sxn-fw-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 10px;
    padding: 22px 18px;
    transition: background 0.2s;
}

.sxn-fw-card:hover { background: rgba(255,255,255,.09); }

.sxn-fw-card__label {
    display: inline-block;
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.sxn-fw-card--treaty .sxn-fw-card__label { background: rgba(26,86,219,.22); color: #bcd2ff; }
.sxn-fw-card--arab   .sxn-fw-card__label { background: rgba(52,211,153,.14); color: #6ee7b7; }
.sxn-fw-card--gcc    .sxn-fw-card__label { background: rgba(99,102,241,.18); color: #a5b4fc; }
.sxn-fw-card--recip  .sxn-fw-card__label { background: rgba(255,255,255,.08); color: rgba(255,255,255,.65); }
.sxn-fw-card h3 { color: #fff; font-size: 0.97rem; margin-bottom: 10px; }
.sxn-fw-card p  { color: rgba(255,255,255,.6); font-size: 0.85rem; margin: 0; line-height: 1.6; }

.sxn-framework__note {
    margin-top: 36px;
    background: rgba(26,86,219,.1);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    padding: 15px 20px;
    font-size: 0.88rem;
    color: rgba(255,255,255,.78);
    max-width: 760px;
}

.sxn-framework__note strong { color: var(--gold-lt); }

/* ════════════════════════════════════════════════════════
   STATS ROW
   ════════════════════════════════════════════════════════ */
.sxn-stats-row {
    background: var(--navy-mid);
    padding: 44px 0;
    border-top: 1px solid var(--border-dk);
    border-bottom: 1px solid var(--border-dk);
}

.sxn-stats-row__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 680px) { .sxn-stats-row__inner { grid-template-columns: repeat(2, 1fr); gap: 32px 0; } }

.sxn-stat {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid var(--border-dk);
}

.sxn-stat:last-child { border-right: none; }

@media (max-width: 680px) {
    .sxn-stat:nth-child(2) { border-right: none; }
    .sxn-stat:nth-child(3) { border-right: 1px solid var(--border-dk); }
}

.sxn-stat__n {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
}

.sxn-stat__l { font-size: 0.75rem; color: rgba(255,255,255,.65); letter-spacing: 0.02em; }

/* ════════════════════════════════════════════════════════
   PROCESS — timeline
   ════════════════════════════════════════════════════════ */
.sxn-process { background: var(--white); }

.sxn-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 16px;
}

.sxn-timeline::before {
    content: '';
    position: absolute;
    top: 21px;
    left: calc(12.5% + 22px);
    right: calc(12.5% + 22px);
    height: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(26,86,219,.15));
}

@media (max-width: 820px) {
    .sxn-timeline { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
    .sxn-timeline::before { display: none; }
}

@media (max-width: 480px) { .sxn-timeline { grid-template-columns: 1fr; } }

.sxn-tl-step { padding: 0 18px; text-align: center; }

.sxn-tl-step__num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 6px rgba(26,86,219,.12);
}

.sxn-tl-step h3 { font-size: 0.95rem; color: var(--navy); margin-bottom: 8px; }
.sxn-tl-step p  { font-size: 0.84rem; color: var(--muted); margin: 0; }

/* ════════════════════════════════════════════════════════
   INTERPOL — dark split
   ════════════════════════════════════════════════════════ */
.sxn-interpol { background: var(--navy); position: relative; overflow: hidden; }

.sxn-interpol::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(26,86,219,.07) 0%, transparent 70%);
}

.sxn-interpol__inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
}

@media (max-width: 820px) { .sxn-interpol__inner { grid-template-columns: 1fr; } }

.sxn-interpol__left h2  { color: #fff; margin-top: 8px; }
.sxn-interpol__left > p { color: rgba(255,255,255,.72); margin-bottom: 26px; }

.sxn-interp-steps { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

.sxn-interp-step {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,.8);
    font-size: 0.91rem;
}

.sxn-interp-step__n {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(26,86,219,.18);
    border: 1px solid rgba(26,86,219,.35);
    color: var(--gold-lt);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sxn-interpol__right {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.sxn-interp-fact         { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.sxn-interp-fact:first-child { border-top: 1px solid rgba(255,255,255,.07); }

.sxn-interp-fact__n {
    font-family: 'Poppins', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.sxn-interp-fact__l     { font-size: 0.78rem; color: rgba(255,255,255,.65); }
.sxn-interp-fact__label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.sxn-interp-fact__tags  { display: flex; flex-wrap: wrap; gap: 8px; }

.sxn-interp-fact__tags span {
    font-size: 0.76rem;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(26,86,219,.12);
    border: 1px solid rgba(26,86,219,.25);
    color: var(--gold-lt);
    font-weight: 600;
}

/* ════════════════════════════════════════════════════════
   GROUNDS — 2-col with checklist
   ════════════════════════════════════════════════════════ */
.sxn-grounds { background: var(--cream); }

.sxn-grounds__inner {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
}

@media (max-width: 820px) { .sxn-grounds__inner { grid-template-columns: 1fr; } }

.sxn-grounds__left p { margin-top: 12px; }

.sxn-grounds__list { list-style: none; margin: 0; padding: 0; }

.sxn-grounds__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.94rem;
    color: var(--text);
    line-height: 1.5;
}

.sxn-grounds__list li:first-child { border-top: 1px solid var(--border); }

.sxn-grounds__list li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-top: 1px;
    background: var(--gold-pale) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 20 20' fill='%231a56db'%3E%3Cpath fill-rule='evenodd' d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 011.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center;
    border: 1.5px solid rgba(26,86,219,.3);
}

/* ════════════════════════════════════════════════════════
   FAQ ACCORDION (homepage)
   ════════════════════════════════════════════════════════ */
.sxn-faq { background: var(--white); }

.sxn-acc {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sxn-acc__item {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.sxn-acc__item > summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 52px 18px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.96rem;
    color: var(--navy);
    position: relative;
    user-select: none;
}

.sxn-acc__item > summary::-webkit-details-marker { display: none; }

.sxn-acc__item > summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 400;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.sxn-acc__item[open] > summary         { color: var(--gold); border-bottom: 1px solid var(--border); }
.sxn-acc__item[open] > summary::after  { content: '−'; }

.sxn-acc__body { padding: 18px 20px; }
.sxn-acc__body p { font-size: 0.92rem; color: var(--muted); margin: 0; line-height: 1.7; }

/* ════════════════════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════════════════════ */
.sxn-final {
    background: var(--navy);
    padding: clamp(64px, 8vw, 100px) 0;
    position: relative;
    overflow: hidden;
}

.sxn-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), rgba(26,86,219,.12));
}

.sxn-final::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(26,86,219,.07) 0%, transparent 70%);
}

.sxn-final__inner { position: relative; z-index: 1; max-width: 680px; }

.sxn-final__inner h2 {
    font-size: clamp(1.9rem, 4.5vw, 3.1rem);
    color: #fff;
    margin-bottom: 14px;
    font-weight: 800;
}

.sxn-final__inner > p { color: rgba(255,255,255,.62); font-size: 1.05rem; margin-bottom: 32px; }
.sxn-final__ctas      { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.sxn-final__note      { font-size: 0.76rem; color: rgba(255,255,255,.52); margin: 0; }

/* ════════════════════════════════════════════════════════
   FAQ ACCORDION — non-homepage service/page templates
   ════════════════════════════════════════════════════════ */
.uae-faq__list { max-width: 820px; }

.uae-faq__item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}

.uae-faq__item > summary {
    cursor: pointer;
    list-style: none;
    padding: 17px 52px 17px 20px;
    font-family: 'Poppins', Inter, sans-serif;
    font-weight: 600;
    font-size: 0.98rem;
    color: #0a2540;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    position: relative;
}

.uae-faq__item > summary::-webkit-details-marker { display: none; }

.uae-faq__item > summary::after {
    content: '+';
    font-size: 1.35rem;
    color: #1a56db;
    font-weight: 400;
    flex-shrink: 0;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.uae-faq__item[open] > summary::after { content: '\2212'; }
.uae-faq__item[open] > summary        { color: #1a56db; }

.uae-faq__item > p,
.uae-faq__item > .sx-a {
    padding: 0 20px 18px;
    color: #4a5568;
    font-size: 0.94rem;
    line-height: 1.65;
    margin: 0;
}

.uae-faq-final h2 {
    font-size: 1.55rem;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 20px;
}
