@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');
/* ===== ARCTIC FROST — Design System ===== */
:root {
    --c7ad5:        #5DADE2;
    --p576f:  #85C1E9;
    --beb2a:   #2E86C1;
    --h99d8:         #85C1E9;
    --nca09:         #5DADE2;
    --ee10f:    #2E86C1;
    --f02e7:         #5DADE2;
    --db7f0:    #2E86C1;
    --a26c2:           #060A10;
    --e2ab2:         #0C1420;
    --p62cd:         #121E30;
    --p0145:         #18283E;
    --h397f:        #FFFFFF;
    --ef76f:         #B0BEC5;
    --p1510:       #78909C;
    --g9a42:       #B0BEC5;
    --he734:    'Quicksand', sans-serif;
    --hda7a:    'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --n68d8:       16px;
    --a1c19:    24px;
    --of9da:    10px;
    --g5389:        1100px;
    --pc7b1:       0 6px 28px rgba(0,0,0,.45);
    --l81cc:         0 0 32px rgba(93,173,226,.25);
    --frost:        #ECF0F1;
    --silver:       #D5DBDB;
    --coral:        #E74C3C;
}
/* ===== SEMANTIC TOKENS (design-system layer 2) ===== */
:root {
    --color-primary: var(--c7ad5);
    --color-primary-light: var(--p576f);
    --color-primary-dark: var(--beb2a);
    --color-accent: var(--nca09);
    --color-accent-dark: var(--ee10f);
    --color-secondary: var(--f02e7);
    --color-secondary-dark: var(--db7f0);
    --color-surface: var(--p62cd);
    --color-surface-elevated: var(--p0145);
    --color-on-surface: var(--h397f);
    --color-on-surface-muted: var(--ef76f);
    --color-text: var(--h397f);
    --color-text-secondary: var(--g9a42);
    --text-heading: var(--he734);
    --text-body: var(--hda7a);
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--hda7a);
    background: var(--a26c2);
    color: var(--h397f);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}
a { color: var(--p576f); text-decoration: none; transition: color .2s; }
a:hover { color: var(--frost); }
img { max-width: 100%; height: auto; display: block; }

.n301dd { width: 92%; max-width: var(--g5389); margin: 0 auto; }

.a8b8a6 {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); border: 0;
}

/* ===== SKIP LINK ===== */
.pd03e8 {
    position: absolute; top: -100px; left: 50%;
    transform: translateX(-50%);
    background: var(--c7ad5); color: var(--h397f);
    padding: 8px 16px; border-radius: var(--of9da);
    z-index: 999; transition: top .2s;
}
.pd03e8:focus { top: 10px; }

/* ===== SITE HEADER ===== */
.ldcb25 {
    position: sticky; top: 0; z-index: 100;
    background: rgba(6,10,16,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(93,173,226,.15);
}
.a5d0f0 {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0; gap: 16px;
}
.k3b3d1 {
    font-family: var(--he734);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 700; color: var(--h397f);
    white-space: nowrap; text-decoration: none;
}
.k3b3d1:hover { color: var(--p576f); }

/* Main Nav */
.pcc0ea { display: flex; align-items: center; gap: 20px; }
.l9b8df {
    display: flex; gap: 24px; list-style: none;
    font-size: .92rem; font-weight: 500; align-items: center;
}
.l9b8df a {
    color: var(--ef76f); padding: 4px 0;
    position: relative; transition: color .2s; text-decoration: none;
}
.l9b8df a:hover { color: var(--p576f); }

/* Language Select */
.df4f5b {
    background: var(--p62cd); color: var(--h397f);
    border: 1px solid rgba(93,173,226,.25);
    border-radius: var(--of9da);
    padding: 6px 28px 6px 10px; font-size: .85rem;
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235DADE2'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 8px center;
    transition: border-color .2s;
}
.df4f5b:hover, .df4f5b:focus { border-color: var(--c7ad5); outline: none; }

/* Menu Toggle */
.c4d83f {
    display: none; background: none; border: none;
    cursor: pointer; padding: 6px; width: 36px; height: 36px;
    align-items: center; justify-content: center; position: relative;
}
.a644c4, .a644c4::before, .a644c4::after {
    display: block; width: 24px; height: 2px;
    background: var(--h397f); border-radius: 2px; transition: transform .3s, opacity .3s;
}
.a644c4 { position: relative; }
.a644c4::before, .a644c4::after { content: ''; position: absolute; left: 0; }
.a644c4::before { top: -7px; }
.a644c4::after { top: 7px; }

/* Mobile Nav */
.g35792 {
    display: none; position: fixed; inset: 0;
    background: rgba(6,10,16,.97); z-index: 200;
    align-items: center; justify-content: center;
    flex-direction: column; padding: 60px 20px;
}
.g35792.lbc529 { display: flex; }
.pf6229 {
    list-style: none; display: flex; flex-direction: column;
    align-items: center; gap: 24px;
}
.pf6229 a {
    font-size: 1.2rem; font-weight: 600; color: var(--h397f); text-decoration: none;
}
.pf6229 a:hover { color: var(--p576f); }

/* ===== BUTTONS ===== */
.o86774 {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--he734); font-weight: 700; font-size: .95rem;
    padding: 12px 28px; border-radius: var(--n68d8); border: none;
    cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s;
    text-decoration: none; white-space: nowrap; letter-spacing: .3px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--c7ad5) 0%, var(--p576f) 100%);
    color: #060A10; box-shadow: var(--l81cc);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(93,173,226,.5);
    color: #060A10;
}
.btn-secondary {
    background: transparent; color: var(--p576f);
    border: 2px solid var(--c7ad5);
}
.btn-secondary:hover { background: rgba(93,173,226,.1); color: var(--frost); }

/* Gold CTA — main call-to-action (ice-blue themed) */
@keyframes pulse-glow {
    0%,100% { box-shadow: 0 0 22px rgba(93,173,226,.35); }
    50%      { box-shadow: 0 0 50px rgba(93,173,226,.65), 0 0 90px rgba(93,173,226,.15); }
}
.j91106 {
    background: linear-gradient(135deg, #85C1E9 0%, #5DADE2 55%, #2E86C1 100%);
    color: #060A10; font-weight: 800; font-size: 1rem;
    box-shadow: 0 0 28px rgba(93,173,226,.4);
    /* animation moved to ::after */
}
.j91106:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 56px rgba(93,173,226,.65);
    color: #060A10; animation: none;
}

.edfc23 { padding: 17px 42px; font-size: 1.1rem; border-radius: var(--a1c19); }
.n46abc { padding: 8px 18px; font-size: .85rem; border-radius: var(--of9da); }

/* Nav CTA in header */
.c38793 {
    background: linear-gradient(135deg, var(--c7ad5) 0%, var(--beb2a) 100%);
    color: #060A10 !important; font-weight: 700;
    padding: 9px 22px; border-radius: var(--of9da);
    box-shadow: 0 0 16px rgba(93,173,226,.3);
    transition: transform .2s, box-shadow .2s;
}
.c38793:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(93,173,226,.55);
    color: #060A10 !important;
}

/* ===== PAGE HERO (subpages) ===== */
.l7f09e {
    padding: clamp(52px, 8vw, 90px) 0 clamp(44px, 6vw, 70px);
    text-align: center;
    background:
        radial-gradient(ellipse 80% 55% at 50% 0%, rgba(93,173,226,.12) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(133,193,233,.06) 0%, transparent 60%),
        var(--a26c2);
    position: relative; overflow: hidden;
}
.l7f09e::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='rgba(93,173,226,0.04)'/%3E%3Ccircle cx='10' cy='10' r='1' fill='rgba(236,240,241,0.02)'/%3E%3Ccircle cx='70' cy='15' r='0.8' fill='rgba(93,173,226,0.03)'/%3E%3C/svg%3E");
    pointer-events: none;
}
.dc3352 {
    font-family: var(--he734);
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 700; line-height: 1.15; margin-bottom: 16px;
    background: linear-gradient(135deg, #85C1E9 0%, #ECF0F1 50%, #5DADE2 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.d72c2e {
    font-size: clamp(.97rem, 2vw, 1.12rem); color: var(--ef76f);
    max-width: 640px; margin: 0 auto 32px; line-height: 1.7;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: clamp(64px, 10vw, 110px) 0 clamp(52px, 8vw, 88px);
    text-align: center; overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(93,173,226,.11) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(236,240,241,.06) 0%, transparent 60%),
        var(--a26c2);
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='rgba(93,173,226,0.04)'/%3E%3Ccircle cx='10' cy='10' r='1' fill='rgba(236,240,241,0.025)'/%3E%3Ccircle cx='70' cy='15' r='0.8' fill='rgba(93,173,226,0.03)'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero h1 {
    font-family: var(--he734);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700; line-height: 1.15; margin-bottom: 18px;
    background: linear-gradient(135deg, #85C1E9 0%, #ECF0F1 45%, #5DADE2 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem); color: var(--ef76f);
    max-width: 660px; margin: 0 auto 28px; line-height: 1.7;
}
.hero-stats {
    display: flex; justify-content: center;
    gap: clamp(10px, 3vw, 32px); flex-wrap: wrap; margin-bottom: 32px;
}
.hero-stat {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .92rem; color: var(--ef76f);
    padding: 7px 14px;
    background: rgba(93,173,226,.06);
    border: 1px solid rgba(93,173,226,.15);
    border-radius: var(--of9da);
}
.hero-stat strong { color: var(--p576f); }

/* ===== SECTIONS ===== */
.hc214e { padding: clamp(52px, 7vw, 80px) 0; }
.l81e42 { background: var(--e2ab2); }
.section-tag {
    display: inline-block; font-size: .75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--c7ad5); margin-bottom: 10px;
}
.hc214e h2, .ae4412 {
    font-family: var(--he734);
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 700; margin-bottom: 16px; line-height: 1.25;
}
.hc214e h3 {
    font-family: var(--he734); font-size: 1.1rem; font-weight: 600;
    margin: 28px 0 8px; color: var(--p576f);
}
.hc214e p, .section-desc {
    color: var(--ef76f); font-size: .95rem; line-height: 1.7; margin-bottom: 12px;
}
.section-desc { max-width: 700px; margin-bottom: 36px; }
.hc214e ul, .hc214e ol {
    color: var(--ef76f); font-size: .93rem; line-height: 1.7;
    padding-left: 20px; margin-bottom: 16px;
}
.hc214e li { margin-bottom: 8px; }
.hc214e li strong { color: var(--h397f); }

/* ===== CARDS / GRID ===== */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: linear-gradient(145deg, var(--p62cd), var(--p0145));
    border: 1px solid rgba(93,173,226,.1);
    border-radius: var(--n68d8); padding: 28px 24px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.card:hover {
    transform: translateY(-4px);
    border-color: rgba(93,173,226,.3);
    box-shadow: var(--pc7b1);
}
.l5211c { font-size: 2rem; margin-bottom: 14px; display: block; }
.card h3 {
    font-family: var(--he734); font-size: 1.05rem; font-weight: 600;
    margin-bottom: 8px; color: var(--h397f);
}
.card p { color: var(--ef76f); font-size: .9rem; line-height: 1.6; }

/* ===== INFO TABLE ===== */
.m817a3 { overflow-x: auto; margin: 24px 0; border-radius: var(--of9da); }
.eb5179 { width: 100%; border-collapse: collapse; font-size: .93rem; margin: 0; }
.eb5179 thead th {
    background: var(--p0145); color: var(--h397f); font-weight: 600;
    font-size: .88rem; text-align: left; padding: 14px 16px;
    border-bottom: 2px solid rgba(93,173,226,.2);
}
.eb5179 thead th:first-child { border-radius: var(--of9da) 0 0 0; }
.eb5179 thead th:last-child { border-radius: 0 var(--of9da) 0 0; }
.eb5179 tr { border-bottom: 1px solid rgba(255,255,255,.06); }
.eb5179 td { padding: 13px 16px; }
.eb5179 td:first-child { color: var(--ef76f); font-weight: 500; width: 42%; }
.eb5179 td:last-child { color: var(--h397f); font-weight: 600; }
.eb5179 tr:hover { background: rgba(93,173,226,.04); }

/* ===== STEPS ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 24px; counter-reset: step;
}
.step {
    text-align: center; padding: 24px 16px; counter-increment: step;
}
.step::before {
    content: counter(step);
    display: flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--c7ad5), var(--p576f));
    border-radius: 50%; font-family: var(--he734);
    font-size: 1.2rem; font-weight: 700; color: #060A10;
}
.step h3 { font-size: .95rem; font-weight: 600; margin-bottom: 6px; }
.step p { color: var(--ef76f); font-size: .85rem; line-height: 1.5; }

/* ===== FAQ — details/summary ===== */
.k81b9c { max-width: 800px; margin: 0 auto; }
details.c9f3ab { border-bottom: 1px solid rgba(255,255,255,.07); }
details.c9f3ab summary {
    display: block; list-style: none;
    color: var(--h397f); font-family: var(--hda7a);
    font-size: .97rem; font-weight: 600;
    padding: 20px 40px 20px 0;
    cursor: pointer; position: relative; transition: color .2s;
}
details.c9f3ab summary::-webkit-details-marker { display: none; }
details.c9f3ab summary::marker { display: none; content: ''; }
details.c9f3ab summary::after {
    content: '+'; position: absolute; right: 0; top: 50%;
    transform: translateY(-50%); font-size: 1.4rem;
    color: var(--c7ad5); transition: transform .3s;
}
details.c9f3ab[open] summary::after { content: '\2212'; }
details.c9f3ab summary:hover { color: var(--p576f); }
details.c9f3ab > p { padding: 0 0 20px; color: var(--ef76f); font-size: .9rem; line-height: 1.7; }
details.c9f3ab > div { padding: 0 0 20px; color: var(--ef76f); font-size: .9rem; line-height: 1.7; }
.faq-section { background: var(--e2ab2); }

/* ===== INFO GRID & CARDS ===== */
.bcbcca {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px; margin-top: 24px;
}
.ea4366 {
    background: linear-gradient(145deg, var(--p62cd), var(--p0145));
    border: 1px solid rgba(93,173,226,.12); border-radius: var(--n68d8); padding: 28px 22px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.ea4366:hover {
    transform: translateY(-5px);
    border-color: rgba(93,173,226,.35);
    box-shadow: var(--pc7b1);
}
.m35379 { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.ea4366 h3 {
    font-family: var(--he734); font-size: 1.05rem; font-weight: 700;
    margin-bottom: 8px; color: var(--h397f);
}
.ea4366 p { color: var(--ef76f); font-size: .9rem; line-height: 1.6; }

/* ===== BONUS GRID & CARDS ===== */
.o11b45 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px; margin-top: 24px;
}
.cb88ff {
    background: linear-gradient(145deg, var(--p62cd), var(--p0145));
    border: 1px solid rgba(93,173,226,.15); border-radius: var(--n68d8); padding: 28px 22px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.cb88ff:hover { transform: translateY(-5px); border-color: rgba(93,173,226,.38); }
.cb88ff h3 {
    font-family: var(--he734); font-size: 1.05rem; font-weight: 700;
    margin-bottom: 8px; color: var(--p576f);
}
.cb88ff p { color: var(--ef76f); font-size: .9rem; line-height: 1.6; }

/* ===== STEPS GRID & CARDS ===== */
.a32523 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px; margin-top: 24px;
}
.ib65ed { text-align: center; padding: 22px 14px; }
.j5fd29 {
    display: flex; align-items: center; justify-content: center;
    width: 50px; height: 50px; margin: 0 auto 14px;
    background: linear-gradient(135deg, var(--c7ad5), var(--p576f));
    border-radius: 50%; font-family: var(--he734);
    font-size: 1.15rem; font-weight: 800; color: #060A10;
    box-shadow: 0 0 22px rgba(93,173,226,.35);
}
.ib65ed h3 {
    font-family: var(--he734); font-size: .97rem; font-weight: 600;
    margin-bottom: 6px; color: var(--h397f);
}
.ib65ed p { color: var(--ef76f); font-size: .87rem; line-height: 1.5; }

/* ===== REVIEW SCORE CARD ===== */
.h42128 {
    background: linear-gradient(145deg, var(--p62cd), var(--p0145));
    border: 1px solid rgba(93,173,226,.18); border-radius: var(--a1c19);
    padding: 36px 32px; text-align: center;
    max-width: 560px; margin: 0 auto 32px;
    box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.l0b837 { margin-top: 24px; }
.m3b142 {
    display: grid; grid-template-columns: 1fr 140px auto;
    align-items: center; gap: 12px;
    padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: .9rem;
}
.m3b142 > span:first-child { color: var(--ef76f); text-align: left; }
.kcba9a {
    height: 7px; background: rgba(255,255,255,.08);
    border-radius: 4px; overflow: hidden;
}
.c2ecc5 {
    height: 100%;
    background: linear-gradient(90deg, #2E86C1 0%, #85C1E9 100%);
    border-radius: 4px;
}
.m3b142 > span:last-child { color: var(--p576f); font-weight: 700; min-width: 28px; text-align: right; }

/* ===== PROS / CONS ===== */
.c32e6b { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.i90739, .nd5815 {
    background: linear-gradient(145deg, var(--p62cd), var(--p0145));
    border-radius: var(--n68d8); padding: 24px 22px;
}
.i90739 { border-top: 3px solid var(--c7ad5); }
.nd5815 { border-top: 3px solid var(--coral); }
.i90739 h3, .i90739 h4 { color: var(--p576f); margin-bottom: 12px; font-size: 1rem; }
.nd5815 h3, .nd5815 h4 { color: #F1948A; margin-bottom: 12px; font-size: 1rem; }
.i90739 ul, .nd5815 ul { list-style: none; padding: 0; margin: 0; }
.i90739 li::before { content: '\2713 '; color: var(--c7ad5); font-weight: 700; }
.nd5815 li::before { content: '\2717 '; color: var(--coral); font-weight: 700; }
.i90739 li, .nd5815 li { padding: 5px 0; color: var(--ef76f); font-size: .9rem; line-height: 1.5; }

/* ===== CTA BANNER ===== */
.d79a27 {
    text-align: center; padding: clamp(52px, 7vw, 80px) 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(93,173,226,.08) 0%, transparent 65%),
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(236,240,241,.05) 0%, transparent 70%),
        var(--e2ab2);
    border-top: 1px solid rgba(93,173,226,.1);
    border-bottom: 1px solid rgba(93,173,226,.1);
}
.d79a27 h2 {
    font-family: var(--he734);
    font-size: clamp(1.5rem, 3.5vw, 2.3rem);
    font-weight: 700; margin-bottom: 12px;
    background: linear-gradient(135deg, #85C1E9, #ECF0F1);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.d79a27 p { color: var(--ef76f); margin-bottom: 32px; font-size: .97rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: linear-gradient(135deg, rgba(93,173,226,.08), rgba(46,134,193,.05));
    border: 1px solid rgba(93,173,226,.2); border-left: 4px solid var(--c7ad5);
    border-radius: var(--of9da); padding: 20px 24px; margin: 24px 0;
}
.highlight-box p { color: var(--ef76f); font-size: .9rem; }
.highlight-box strong { color: var(--p576f); }

/* ===== BREADCRUMB ===== */
.bc1d7e { padding: 14px 0; font-size: .82rem; }
.ide723 { display: flex; list-style: none; gap: 8px; flex-wrap: wrap; }
.ide723 li + li::before { content: '\203A'; margin-right: 8px; color: var(--p1510); }
.bc1d7e a { color: var(--p1510); }
.bc1d7e a:hover { color: var(--p576f); }
.bc1d7e [aria-current] { color: var(--c7ad5); }

/* ===== SITE FOOTER ===== */
.gd580d {
    background: var(--a26c2); border-top: 1px solid rgba(255,255,255,.06);
    padding: 48px 0 28px; font-size: .85rem;
}
.footer-nav { margin-bottom: 24px; }
.o95bb8 {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 10px 24px; list-style: none;
}
.o95bb8 a {
    color: var(--p1510); transition: color .2s;
    text-decoration: none; font-size: .88rem;
}
.o95bb8 a:hover { color: var(--p576f); }

.n958e5 {
    text-align: center; padding: 24px 0 16px;
    border-top: 1px solid rgba(255,255,255,.06); margin-top: 8px;
}
.n958e5 p {
    color: var(--p1510); font-size: .8rem; line-height: 1.6;
    max-width: 700px; margin: 10px auto 0;
}
.n958e5 a { color: var(--c7ad5); }
.j8ca2a { text-align: center; color: var(--p1510); font-size: .78rem; margin-top: 14px; }

/* ===== TEXT-CONTENT (SEO long-form) ===== */
.kd8a65 { max-width: 800px; margin: 0 auto; }
.kd8a65 p {
    color: var(--ef76f); font-size: .95rem; line-height: 1.8;
    margin-bottom: 18px;
}
.kd8a65 p:last-child { margin-bottom: 0; }
.kd8a65 strong { color: var(--h397f); }
.kd8a65 a { color: var(--p576f); text-decoration: underline; text-underline-offset: 3px; }
.kd8a65 a:hover { color: var(--frost); }

/* ===== IMAGE-TEXT (image + text side by side) ===== */
.p73d57 {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    align-items: center; margin-top: 24px;
}
.k418a4 { direction: rtl; }
.k418a4 > * { direction: ltr; }
.p42a2c { border-radius: var(--a1c19); overflow: hidden; }
.p42a2c img {
    width: 100%; height: auto; display: block;
    border-radius: var(--a1c19);
    border: 1px solid rgba(93,173,226,.15);
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.e55dab { color: var(--ef76f); font-size: .93rem; line-height: 1.7; }
.e55dab strong { color: var(--h397f); }
.e55dab a { color: var(--p576f); }
@media (max-width: 768px) {
    .p73d57 { grid-template-columns: 1fr; gap: 24px; }
    .k418a4 { direction: ltr; }
}

/* ===== AGE BADGE ===== */
.age-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border: 2px solid var(--beb2a);
    border-radius: 50%; font-weight: 700; font-size: .8rem;
    color: var(--beb2a); margin: 0 6px; vertical-align: middle;
}

/* ===== SCROLL TO TOP ===== */
.lb4042 {
    position: fixed; bottom: 28px; right: 28px;
    width: 44px; height: 44px; background: var(--c7ad5);
    color: #060A10; border: none; border-radius: 50%;
    font-size: 1.2rem; cursor: pointer;
    opacity: 0; visibility: hidden;
    transition: opacity .3s, visibility .3s, transform .2s;
    z-index: 90; box-shadow: var(--pc7b1);
}
.lb4042.aa1098 { opacity: 1; visibility: visible; }
.lb4042:hover { transform: translateY(-3px); background: var(--beb2a); }

/* ===== REVIEW SCORE (review page) ===== */
.kcbfdf {
    font-family: var(--he734); font-size: 5rem; font-weight: 700;
    background: linear-gradient(135deg, #85C1E9, #ECF0F1);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1;
}
.score-stars { font-size: 1.8rem; color: var(--p576f); letter-spacing: 3px; margin: 8px 0; }
.score-table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: .9rem; }
.score-table td { padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,.06); }
.score-table td:first-child { color: var(--ef76f); width: 55%; }
.score-table td:last-child { color: var(--p576f); font-weight: 600; text-align: right; }

/* ===== STICKY MOBILE CTA ===== */
.je5835 {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
    padding: 12px 16px;
    background: rgba(6,10,16,.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(93,173,226,.2);
    text-align: center;
    box-shadow: 0 -4px 24px rgba(0,0,0,.5);
}
.je5835 .o86774 { width: 100%; max-width: 360px; justify-content: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .l9b8df { display: none; }
    .pcc0ea .df4f5b { display: none; }
    .c4d83f { display: flex; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .c32e6b { grid-template-columns: 1fr; }
    section, .hc214e { padding: clamp(36px, 6vw, 56px) 0; }
    .hero { padding: clamp(48px, 8vw, 80px) 0 clamp(36px, 6vw, 56px); }
    .o95bb8 { gap: 8px 14px; }
    .steps { grid-template-columns: 1fr 1fr; }
    .a32523 { grid-template-columns: 1fr 1fr; }
    .bcbcca { grid-template-columns: 1fr 1fr; }
    .m3b142 { grid-template-columns: 1fr 100px auto; }
    .je5835 { display: block; }
    body { padding-bottom: 72px; }
}
@media (max-width: 480px) {
    body { font-size: 15px; }
    .edfc23 { padding: 15px 30px; font-size: 1rem; }
    .steps { grid-template-columns: 1fr; }
    .a32523 { grid-template-columns: 1fr; }
    .bcbcca { grid-template-columns: 1fr; }
    .a5d0f0 { padding: 10px 0; }
    .hero-stat { font-size: .83rem; padding: 5px 10px; }
    .kcbfdf { font-size: 3.5rem; }
    .m3b142 { grid-template-columns: 1fr 80px auto; gap: 8px; }
    .c32e6b { grid-template-columns: 1fr; }
    .h42128 { padding: 24px 18px; }
}

/* ===== LANGUAGE SWITCHER ===== */
.ld0806 {
    position: relative;
    margin-left: 10px;
    flex-shrink: 0;
}
.ld0806 summary.p09765 {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.13);
    color: var(--h397f);
    padding: 6px 11px;
    border-radius: var(--of9da);
    cursor: pointer;
    font-size: .82rem;
    font-family: var(--hda7a);
    white-space: nowrap;
    transition: background .2s, border-color .2s;
    user-select: none;
}
.ld0806 summary.p09765::-webkit-details-marker { display: none; }
.ld0806 summary.p09765::marker { display: none; }
.ld0806:hover summary.p09765,
.ld0806[open] summary.p09765 {
    background: rgba(255,255,255,.13);
    border-color: rgba(93,173,226,.35);
    color: var(--p576f);
}
.b31cf8 { font-size: .7rem; opacity: .7; transition: transform .2s; }
.ld0806[open] .b31cf8 { transform: rotate(180deg); }

.g8dfaf {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: var(--p62cd);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--n68d8);
    padding: 6px;
    list-style: none;
    z-index: 300;
    box-shadow: 0 8px 32px rgba(0,0,0,.6);
    min-width: 160px;
}
.ld0806[open] .g8dfaf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    max-height: 400px;
    overflow-y: auto;
    animation: fadeInDown .15s ease;
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.g8dfaf li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    color: var(--g9a42);
    border-radius: var(--of9da);
    font-size: .82rem;
    white-space: nowrap;
    transition: background .15s, color .15s;
}
.g8dfaf li a:hover,
.g8dfaf li a.gb1d3f {
    background: rgba(255,255,255,.08);
    color: var(--p576f);
}
.g8dfaf li a.gb1d3f { font-weight: 700; }

/* Mobile lang bar */
.o84691 {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(255,255,255,.07);
    margin-top: 8px;
}
.o84691 a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--of9da);
    color: var(--g9a42);
    font-size: .78rem;
    transition: background .15s, color .15s;
}
.o84691 a:hover,
.o84691 a.o307ef {
    background: rgba(93,173,226,.12);
    border-color: rgba(93,173,226,.3);
    color: var(--p576f);
}
.o84691 a.o307ef { font-weight: 700; }

@media (max-width: 768px) {
    .ld0806 { display: none; }
}


/* ===== STRUCTURAL VARIANT STYLES ===== */

/* info-grid variant B: list */
ul.bcbcca, ul.lc079e { list-style: none; padding: 0; margin: 0; }

/* info-grid variant C: 2-column wider */
.i08016 { grid-template-columns: repeat(2, 1fr) !important; }
@media (max-width: 600px) { .i08016 { grid-template-columns: 1fr !important; } }

/* steps-grid variant B: ordered list */
ol.a32523, ol.e52151 { list-style: none; padding: 0; margin: 0; counter-reset: step-counter; }
ol.e52151 > li { counter-increment: step-counter; }
ol.e52151 > li::before { content: counter(step-counter); font-weight: 700; font-size: 1.5rem; color: var(--c7ad5); display: block; margin-bottom: .5rem; }

/* steps-grid variant C: timeline */
.c24c66 { display: flex; flex-direction: column; gap: 1.5rem; padding-left: 2rem; border-left: 3px solid var(--c7ad5); }
.d47280 { display: flex; align-items: flex-start; gap: 1rem; position: relative; }
.i4ce4f { width: 36px; height: 36px; border-radius: 50%; background: var(--c7ad5); color: var(--a26c2); display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; margin-left: -2.55rem; }
.bd725c h3 { margin-bottom: .25rem; }

/* info-table variant B: definition list */
dl.k8b0dc { display: grid; grid-template-columns: 1fr; gap: 0; }
.g995b8 { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,.08); }
.g995b8:last-child { border-bottom: none; }
.eb48a5 { font-weight: 600; padding: .75rem 1rem; color: var(--c7ad5); }
.lf8815 { padding: .75rem 1rem; }

/* faq variant B: accordion (div-based) */
.p77e2e .d30c21 { cursor: pointer; width: 100%; text-align: left; background: none; border: none; color: inherit; font: inherit; padding: 1rem; }
.p77e2e .ha2bac { display: none; }
.p77e2e .c9f3ab.lbc529 .ha2bac { display: block; }

/* faq variant C: definition list */
dl.k81b9c { display: grid; gap: 0; }
dl.k81b9c dt.d8b439 { cursor: pointer; padding: 1rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.08); }
dl.k81b9c dd.ha2bac { padding: .5rem 1rem 1rem; margin: 0; border-bottom: 1px solid rgba(255,255,255,.08); }


/* Related Links (cross-linking) */
.pefb04 { padding: 2rem 0; }
.f58677 { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.f58677 li a { display: inline-block; padding: .6rem 1.4rem; border-radius: var(--n68d8); border: 1px solid var(--nca09); color: var(--nca09); text-decoration: none; transition: all .2s ease; font-weight: 500; }
.f58677 li a:hover { background: var(--nca09); color: var(--a26c2); }


/* Promo Banner (SVG image banners) */
.m95cda { margin: 1.5rem auto; text-align: center; max-width: 100%; display: flex; justify-content: center; }
.nee398 { display: block; max-width: 800px; margin: 0 auto; width: 100%; transition: transform .2s ease, box-shadow .2s ease; border-radius: 12px; overflow: hidden; }
.nee398:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.f9252f { width: 100%; height: auto; display: block; }
/* Card icon (replaces emoji in info-grid) */
.l5211c { display: inline-block; vertical-align: middle; }
.m35379 .l5211c { width: 32px; height: 32px; }

/* ===== KEY FACTS (AI/AEO) ===== */
.jda77c {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
    background: linear-gradient(145deg, var(--p62cd), var(--p0145));
    border-radius: var(--n68d8); padding: 24px; margin-top: 24px;
}
.j5c101 { display: flex; flex-direction: column; gap: 4px; padding: 12px 16px; border-radius: var(--of9da); background: var(--e2ab2); }
.j5c101 dt { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--txt-2); }
.j5c101 dd { margin: 0; font-size: 1.1rem; font-weight: 700; color: var(--nca09); }
@media (max-width: 768px) { .jda77c { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .jda77c { grid-template-columns: 1fr; } }

/* ===== ACCESSIBILITY (ui-ux-pro-max) ===== */
:focus-visible { outline: 2px solid var(--nca09); outline-offset: 2px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .j91106 { animation: none; }
}
/* Touch targets: minimum 44x44px */
.o86774, .j91106, .edfc23, .n46abc, .c38793, .c4d83f, .d30c21, .d8b439, .lb4042, .je5835 a, .p09765 { min-height: 44px; min-width: 44px; }
/* CTA button: replace box-shadow animation with pseudo-element opacity */
.j91106 { position: relative; overflow: visible; }
.j91106::after {
  content: ""; position: absolute; inset: -4px; border-radius: inherit;
  background: var(--nca09); opacity: 0; z-index: -1; transition: opacity 0.3s ease-out;
}
.j91106:hover::after { opacity: 0.2; }
@keyframes pulse-glow { 0%, 100% { opacity: 0; } 50% { opacity: 0.15; } }
.j91106::after { animation: pulse-glow 3s ease-in-out infinite; }

/* ===== TRUST BADGES (mktg-marketing-psychology) ===== */
.o067bf { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
.d080a5 {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 12px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 600;
    background: rgba(255,255,255,0.08); color: var(--txt-2);
    border: 1px solid rgba(255,255,255,0.1);
}
.d080a5.b63670 { color: var(--nca09); border-color: rgba(212,168,67,0.3); }

/* ===== PAYMENT / PROVIDER / TRUST GRIDS ===== */
.c9a478, .fccd08 { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 20px; }
.jd90fa, .of92c0 { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px; min-width: 80px; border-radius: var(--of9da); background: var(--p62cd); transition: transform 0.2s; }
.jd90fa:hover, .of92c0:hover { transform: translateY(-2px); }
.jd90fa span, .of92c0 span { font-size: 0.75rem; color: var(--txt-2); text-align: center; }
.ha18fb { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 20px; }
.g2da9e { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 16px; border-radius: var(--of9da); background: var(--p62cd); border: 1px solid rgba(255,255,255,0.05); text-decoration: none; transition: border-color 0.2s; }
.g2da9e:hover { border-color: var(--nca09); }
.g2da9e span { font-size: 0.7rem; color: var(--nca09); font-weight: 600; }

/* ===== USER REVIEWS ===== */
.e2a7ac { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 20px; }
.d59c89 { background: var(--p62cd); border-radius: var(--n68d8); padding: 20px; border: 1px solid rgba(255,255,255,0.05); }
.la99c8 { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.a0a911 { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--nca09), var(--c7ad5)); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--a26c2); flex-shrink: 0; }
.d7aef7 { color: var(--nca09); font-size: 14px; letter-spacing: 1px; }
.j86dd0 { color: var(--p1510); font-size: 0.75rem; }
.d59c89 p { font-size: 0.9rem; color: var(--g9a42); line-height: 1.6; }

/* === Per-domain layout === */
:root { --max-w: 1060px; }
:root { --radius: 16px; --radius-lg: 28px; --radius-sm: 10px; }
.section { padding: clamp(64px, 9vw, 100px) 0; }
.info-grid, .bonus-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.info-card:hover, .bonus-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,.5); }
body { line-height: 1.7; }
body { font-size: 15.5px; }
.section + .section::before { content: ''; display: block; width: 60px; height: 3px; background: var(--gold); margin: 0 auto 40px; opacity: .3; }
.image-text { grid-template-columns: 1fr; text-align: center; }
.image-text-reverse { direction: ltr; }
.info-card:hover { transform: translateY(-3px) rotate(0.5deg); }
