@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@400;500;600;700&family=Work+Sans:wght@400;500;600;700&display=swap');
/* ===== DESERT SAND — Design System ===== */
:root {
    --jccb0:        #D4A853;
    --ece18:  #E2C47A;
    --p2dc3:   #B08C3A;
    --g688d:         #C4A265;
    --g3c18:         #D4A853;
    --d76a9:    #B08C3A;
    --j8afa:         #D4A853;
    --hcc30:    #B08C3A;
    --terra:        #C0392B;
    --terra-light:  #D9534F;
    --sienna:       #A0522D;
    --ee8ce:           #0A0806;
    --gf76b:         #14100C;
    --e3326:         #1E1814;
    --d30e2:         #28201C;
    --ba337:        #FFFFFF;
    --m4108:         #B5A898;
    --e027e:       #7D7068;
    --l51de:       #B5A898;
    --hbcdd:    'Bitter', Georgia, serif;
    --p05e9:    'Work Sans', sans-serif;
    --n9a18:       12px;
    --pff5f:    20px;
    --f4315:    8px;
    --a759d:        1100px;
    --k3dc5:       0 4px 24px rgba(0,0,0,.55);
    --lb1e5:         0 0 32px rgba(212,168,83,.25);
}
/* ===== SEMANTIC TOKENS (design-system layer 2) ===== */
:root {
    --color-primary: var(--jccb0);
    --color-primary-light: var(--ece18);
    --color-primary-dark: var(--p2dc3);
    --color-accent: var(--g3c18);
    --color-accent-dark: var(--d76a9);
    --color-secondary: var(--j8afa);
    --color-secondary-dark: var(--hcc30);
    --color-surface: var(--e3326);
    --color-surface-elevated: var(--d30e2);
    --color-on-surface: var(--ba337);
    --color-on-surface-muted: var(--m4108);
    --color-text: var(--ba337);
    --color-text-secondary: var(--l51de);
    --text-heading: var(--hbcdd);
    --text-body: var(--p05e9);
    --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(--p05e9);
    background: var(--ee8ce);
    color: var(--ba337);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}
a { color: var(--ece18); text-decoration: none; transition: color .2s; }
a:hover { color: var(--g3c18); }
img { max-width: 100%; height: auto; display: block; }

.o7135e { width: 92%; max-width: var(--a759d); margin: 0 auto; }

.jaf418 {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); border: 0;
}

/* ===== SKIP LINK ===== */
.o64fa0 {
    position: absolute; top: -100px; left: 50%;
    transform: translateX(-50%);
    background: var(--jccb0); color: var(--ba337);
    padding: 8px 16px; border-radius: var(--f4315);
    z-index: 999; transition: top .2s;
}
.o64fa0:focus { top: 10px; }

/* ===== SITE HEADER ===== */
.l104bc {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10,8,6,.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212,168,83,.15);
}
.m50cc3 {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0; gap: 16px;
}
.d9ff36 {
    font-family: var(--hbcdd);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 700; color: var(--ba337);
    white-space: nowrap; text-decoration: none;
}
.d9ff36:hover { color: var(--g3c18); }

/* Main Nav */
.o45f82 { display: flex; align-items: center; gap: 20px; }
.f87c75 {
    display: flex; gap: 24px; list-style: none;
    font-size: .92rem; font-weight: 500; align-items: center;
}
.f87c75 a {
    color: var(--m4108); padding: 4px 0;
    position: relative; transition: color .2s; text-decoration: none;
}
.f87c75 a:hover { color: var(--ece18); }

/* Language Select */
.g5b34e {
    background: var(--e3326); color: var(--ba337);
    border: 1px solid rgba(212,168,83,.25);
    border-radius: var(--f4315);
    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='%23D4A853'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 8px center;
    transition: border-color .2s;
}
.g5b34e:hover, .g5b34e:focus { border-color: var(--jccb0); outline: none; }

/* Menu Toggle */
.c27ea9 {
    display: none; background: none; border: none;
    cursor: pointer; padding: 6px; width: 36px; height: 36px;
    align-items: center; justify-content: center; position: relative;
}
.aae563, .aae563::before, .aae563::after {
    display: block; width: 24px; height: 2px;
    background: var(--ba337); border-radius: 2px; transition: transform .3s, opacity .3s;
}
.aae563 { position: relative; }
.aae563::before, .aae563::after { content: ''; position: absolute; left: 0; }
.aae563::before { top: -7px; }
.aae563::after { top: 7px; }

/* Mobile Nav */
.h918b7 {
    display: none; position: fixed; inset: 0;
    background: rgba(10,8,6,.97); z-index: 200;
    align-items: center; justify-content: center;
    flex-direction: column; padding: 60px 20px;
}
.h918b7.fa23db { display: flex; }
.h5490a {
    list-style: none; display: flex; flex-direction: column;
    align-items: center; gap: 24px;
}
.h5490a a {
    font-size: 1.2rem; font-weight: 600; color: var(--ba337); text-decoration: none;
}
.h5490a a:hover { color: var(--ece18); }

/* ===== BUTTONS ===== */
.da1380 {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--hbcdd); font-weight: 700; font-size: .95rem;
    padding: 12px 28px; border-radius: var(--n9a18); 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(--jccb0) 0%, var(--g688d) 100%);
    color: var(--ba337); box-shadow: var(--lb1e5);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(212,168,83,.5);
    color: var(--ba337);
}
.btn-secondary {
    background: transparent; color: var(--ece18);
    border: 2px solid var(--jccb0);
}
.btn-secondary:hover { background: rgba(212,168,83,.1); color: var(--g3c18); }

/* Gold CTA — main call-to-action (sandy gold) */
@keyframes pulse-glow {
    0%,100% { box-shadow: 0 0 22px rgba(212,168,83,.3); }
    50%      { box-shadow: 0 0 48px rgba(212,168,83,.6), 0 0 86px rgba(196,162,101,.15); }
}
.hee2e7 {
    background: linear-gradient(135deg, var(--g3c18) 0%, #C4A265 55%, var(--d76a9) 100%);
    color: #1a0e00; font-weight: 800; font-size: 1rem;
    box-shadow: 0 0 28px rgba(212,168,83,.35);
    /* animation moved to ::after */
}
.hee2e7:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 56px rgba(212,168,83,.65);
    color: #1a0e00; animation: none;
}

.h71978 { padding: 17px 42px; font-size: 1.1rem; border-radius: var(--pff5f); }
.ic4115 { padding: 8px 18px; font-size: .85rem; border-radius: var(--f4315); }

/* Nav CTA in header */
.e258dc {
    background: linear-gradient(135deg, var(--g3c18) 0%, var(--d76a9) 100%);
    color: #1a0e00 !important; font-weight: 700;
    padding: 9px 22px; border-radius: var(--f4315);
    box-shadow: 0 0 16px rgba(212,168,83,.25);
    transition: transform .2s, box-shadow .2s;
}
.e258dc:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(212,168,83,.5);
    color: #1a0e00 !important;
}

/* ===== PAGE HERO (subpages) ===== */
.f0c37e {
    padding: clamp(52px, 8vw, 90px) 0 clamp(44px, 6vw, 70px);
    text-align: center;
    background:
        radial-gradient(ellipse 80% 55% at 50% 0%, rgba(212,168,83,.12) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(192,57,43,.06) 0%, transparent 60%),
        var(--ee8ce);
    position: relative; overflow: hidden;
}
.f0c37e::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='2' fill='rgba(212,168,83,0.018)'/%3E%3Ccircle cx='10' cy='10' r='1' fill='rgba(160,82,45,0.015)'/%3E%3Ccircle cx='70' cy='15' r='1.5' fill='rgba(212,168,83,0.012)'/%3E%3C/svg%3E");
    pointer-events: none;
}
.ld62dc {
    font-family: var(--hbcdd);
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 700; line-height: 1.15; margin-bottom: 16px;
    background: linear-gradient(135deg, var(--g3c18) 0%, var(--ece18) 50%, var(--terra) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.m45a7c {
    font-size: clamp(.97rem, 2vw, 1.12rem); color: var(--m4108);
    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(212,168,83,.11) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(160,82,45,.08) 0%, transparent 60%),
        var(--ee8ce);
}
.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='2' fill='rgba(212,168,83,0.022)'/%3E%3Ccircle cx='12' cy='12' r='1' fill='rgba(160,82,45,0.018)'/%3E%3Ccircle cx='68' cy='18' r='1.5' fill='rgba(212,168,83,0.015)'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero h1 {
    font-family: var(--hbcdd);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700; line-height: 1.15; margin-bottom: 18px;
    background: linear-gradient(135deg, var(--g3c18) 0%, var(--ece18) 45%, var(--terra) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem); color: var(--m4108);
    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(--m4108);
    padding: 7px 14px;
    background: rgba(212,168,83,.06);
    border: 1px solid rgba(212,168,83,.15);
    border-radius: var(--f4315);
}
.hero-stat strong { color: var(--ece18); }

/* ===== SECTIONS ===== */
.fbe890 { padding: clamp(52px, 7vw, 80px) 0; }
.if5462 { background: var(--gf76b); }
.section-tag {
    display: inline-block; font-size: .75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--jccb0); margin-bottom: 10px;
}
.fbe890 h2, .e06a2c {
    font-family: var(--hbcdd);
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 700; margin-bottom: 16px; line-height: 1.25;
}
.fbe890 h3 {
    font-family: var(--hbcdd); font-size: 1.1rem; font-weight: 600;
    margin: 28px 0 8px; color: var(--ece18);
}
.fbe890 p, .section-desc {
    color: var(--m4108); font-size: .95rem; line-height: 1.7; margin-bottom: 12px;
}
.section-desc { max-width: 700px; margin-bottom: 36px; }
.fbe890 ul, .fbe890 ol {
    color: var(--m4108); font-size: .93rem; line-height: 1.7;
    padding-left: 20px; margin-bottom: 16px;
}
.fbe890 li { margin-bottom: 8px; }
.fbe890 li strong { color: var(--ba337); }

/* ===== 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(--e3326), var(--d30e2));
    border: 1px solid rgba(212,168,83,.1);
    border-radius: var(--n9a18); padding: 28px 24px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,168,83,.3);
    box-shadow: var(--k3dc5);
}
.g4f972 { font-size: 2rem; margin-bottom: 14px; display: block; }
.card h3 {
    font-family: var(--hbcdd); font-size: 1.05rem; font-weight: 600;
    margin-bottom: 8px; color: var(--ba337);
}
.card p { color: var(--m4108); font-size: .9rem; line-height: 1.6; }

/* ===== INFO TABLE ===== */
.g48cc9 { overflow-x: auto; margin: 24px 0; border-radius: var(--f4315); }
.jbe7da { width: 100%; border-collapse: collapse; font-size: .93rem; margin: 0; }
.jbe7da thead th {
    background: var(--d30e2); color: var(--ba337); font-weight: 600;
    font-size: .88rem; text-align: left; padding: 14px 16px;
    border-bottom: 2px solid rgba(212,168,83,.2);
}
.jbe7da thead th:first-child { border-radius: var(--f4315) 0 0 0; }
.jbe7da thead th:last-child { border-radius: 0 var(--f4315) 0 0; }
.jbe7da tr { border-bottom: 1px solid rgba(255,255,255,.06); }
.jbe7da td { padding: 13px 16px; }
.jbe7da td:first-child { color: var(--m4108); font-weight: 500; width: 42%; }
.jbe7da td:last-child { color: var(--ba337); font-weight: 600; }
.jbe7da tr:hover { background: rgba(212,168,83,.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(--jccb0), var(--sienna));
    border-radius: 50%; font-family: var(--hbcdd);
    font-size: 1.2rem; font-weight: 700; color: var(--ba337);
}
.step h3 { font-size: .95rem; font-weight: 600; margin-bottom: 6px; }
.step p { color: var(--m4108); font-size: .85rem; line-height: 1.5; }

/* ===== FAQ — details/summary ===== */
.acc4de { max-width: 800px; margin: 0 auto; }
details.p243d5 { border-bottom: 1px solid rgba(255,255,255,.07); }
details.p243d5 summary {
    display: block; list-style: none;
    color: var(--ba337); font-family: var(--p05e9);
    font-size: .97rem; font-weight: 600;
    padding: 20px 40px 20px 0;
    cursor: pointer; position: relative; transition: color .2s;
}
details.p243d5 summary::-webkit-details-marker { display: none; }
details.p243d5 summary::marker { display: none; content: ''; }
details.p243d5 summary::after {
    content: '+'; position: absolute; right: 0; top: 50%;
    transform: translateY(-50%); font-size: 1.4rem;
    color: var(--jccb0); transition: transform .3s;
}
details.p243d5[open] summary::after { content: '\2212'; }
details.p243d5 summary:hover { color: var(--ece18); }
details.p243d5 > p { padding: 0 0 20px; color: var(--m4108); font-size: .9rem; line-height: 1.7; }
details.p243d5 > div { padding: 0 0 20px; color: var(--m4108); font-size: .9rem; line-height: 1.7; }
.faq-section { background: var(--gf76b); }

/* ===== INFO GRID & CARDS ===== */
.ne8200 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px; margin-top: 24px;
}
.i7fb68 {
    background: linear-gradient(145deg, var(--e3326), var(--d30e2));
    border: 1px solid rgba(212,168,83,.12); border-radius: var(--n9a18); padding: 28px 22px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.i7fb68:hover {
    transform: translateY(-5px);
    border-color: rgba(212,168,83,.35);
    box-shadow: var(--k3dc5);
}
.g2faf4 { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.i7fb68 h3 {
    font-family: var(--hbcdd); font-size: 1.05rem; font-weight: 700;
    margin-bottom: 8px; color: var(--ba337);
}
.i7fb68 p { color: var(--m4108); font-size: .9rem; line-height: 1.6; }

/* ===== BONUS GRID & CARDS ===== */
.n2ccbc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px; margin-top: 24px;
}
.o1ff40 {
    background: linear-gradient(145deg, var(--e3326), var(--d30e2));
    border: 1px solid rgba(212,168,83,.15); border-radius: var(--n9a18); padding: 28px 22px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.o1ff40:hover { transform: translateY(-5px); border-color: rgba(212,168,83,.38); }
.o1ff40 h3 {
    font-family: var(--hbcdd); font-size: 1.05rem; font-weight: 700;
    margin-bottom: 8px; color: var(--g3c18);
}
.o1ff40 p { color: var(--m4108); font-size: .9rem; line-height: 1.6; }

/* ===== STEPS GRID & CARDS ===== */
.lee135 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px; margin-top: 24px;
}
.eda6e5 { text-align: center; padding: 22px 14px; }
.n8c871 {
    display: flex; align-items: center; justify-content: center;
    width: 50px; height: 50px; margin: 0 auto 14px;
    background: linear-gradient(135deg, var(--jccb0), var(--sienna));
    border-radius: 50%; font-family: var(--hbcdd);
    font-size: 1.15rem; font-weight: 800; color: var(--ba337);
    box-shadow: 0 0 22px rgba(212,168,83,.3);
}
.eda6e5 h3 {
    font-family: var(--hbcdd); font-size: .97rem; font-weight: 600;
    margin-bottom: 6px; color: var(--ba337);
}
.eda6e5 p { color: var(--m4108); font-size: .87rem; line-height: 1.5; }

/* ===== REVIEW SCORE CARD ===== */
.f323ed {
    background: linear-gradient(145deg, var(--e3326), var(--d30e2));
    border: 1px solid rgba(212,168,83,.18); border-radius: var(--pff5f);
    padding: 36px 32px; text-align: center;
    max-width: 560px; margin: 0 auto 32px;
    box-shadow: 0 8px 40px rgba(0,0,0,.45);
}
.ce6b70 { margin-top: 24px; }
.d60fb0 {
    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;
}
.d60fb0 > span:first-child { color: var(--m4108); text-align: left; }
.bf228c {
    height: 7px; background: rgba(255,255,255,.08);
    border-radius: 4px; overflow: hidden;
}
.ic16d8 {
    height: 100%;
    background: linear-gradient(90deg, var(--sienna) 0%, var(--g3c18) 100%);
    border-radius: 4px;
}
.d60fb0 > span:last-child { color: var(--g3c18); font-weight: 700; min-width: 28px; text-align: right; }

/* ===== PROS / CONS ===== */
.b79945 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.j0993a, .l28512 {
    background: linear-gradient(145deg, var(--e3326), var(--d30e2));
    border-radius: var(--n9a18); padding: 24px 22px;
}
.j0993a { border-top: 3px solid var(--g3c18); }
.l28512 { border-top: 3px solid var(--terra); }
.j0993a h3, .j0993a h4 { color: var(--g3c18); margin-bottom: 12px; font-size: 1rem; }
.l28512 h3, .l28512 h4 { color: var(--terra-light); margin-bottom: 12px; font-size: 1rem; }
.j0993a ul, .l28512 ul { list-style: none; padding: 0; margin: 0; }
.j0993a li::before { content: '\2713 '; color: var(--g3c18); font-weight: 700; }
.l28512 li::before { content: '\2717 '; color: var(--terra); font-weight: 700; }
.j0993a li, .l28512 li { padding: 5px 0; color: var(--m4108); font-size: .9rem; line-height: 1.5; }

/* ===== CTA BANNER ===== */
.f051f7 {
    text-align: center; padding: clamp(52px, 7vw, 80px) 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(212,168,83,.08) 0%, transparent 65%),
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(160,82,45,.06) 0%, transparent 70%),
        var(--gf76b);
    border-top: 1px solid rgba(212,168,83,.1);
    border-bottom: 1px solid rgba(212,168,83,.1);
}
.f051f7 h2 {
    font-family: var(--hbcdd);
    font-size: clamp(1.5rem, 3.5vw, 2.3rem);
    font-weight: 700; margin-bottom: 12px;
    background: linear-gradient(135deg, var(--g3c18), var(--ece18));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.f051f7 p { color: var(--m4108); margin-bottom: 32px; font-size: .97rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: linear-gradient(135deg, rgba(212,168,83,.07), rgba(160,82,45,.05));
    border: 1px solid rgba(212,168,83,.2); border-left: 4px solid var(--jccb0);
    border-radius: var(--f4315); padding: 20px 24px; margin: 24px 0;
}
.highlight-box p { color: var(--m4108); font-size: .9rem; }
.highlight-box strong { color: var(--ece18); }

/* ===== BREADCRUMB ===== */
.h0bf4c { padding: 14px 0; font-size: .82rem; }
.e2e481 { display: flex; list-style: none; gap: 8px; flex-wrap: wrap; }
.e2e481 li + li::before { content: '\203A'; margin-right: 8px; color: var(--e027e); }
.h0bf4c a { color: var(--e027e); }
.h0bf4c a:hover { color: var(--ece18); }
.h0bf4c [aria-current] { color: var(--jccb0); }

/* ===== SITE FOOTER ===== */
.p17ff4 {
    background: var(--ee8ce); border-top: 1px solid rgba(255,255,255,.06);
    padding: 48px 0 28px; font-size: .85rem;
}
.footer-nav { margin-bottom: 24px; }
.i4d250 {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 10px 24px; list-style: none;
}
.i4d250 a {
    color: var(--e027e); transition: color .2s;
    text-decoration: none; font-size: .88rem;
}
.i4d250 a:hover { color: var(--ece18); }

.b77d30 {
    text-align: center; padding: 24px 0 16px;
    border-top: 1px solid rgba(255,255,255,.06); margin-top: 8px;
}
.b77d30 p {
    color: var(--e027e); font-size: .8rem; line-height: 1.6;
    max-width: 700px; margin: 10px auto 0;
}
.b77d30 a { color: var(--jccb0); }
.g6a88c { text-align: center; color: var(--e027e); font-size: .78rem; margin-top: 14px; }

/* ===== TEXT-CONTENT (SEO long-form) ===== */
.m91697 { max-width: 800px; margin: 0 auto; }
.m91697 p {
    color: var(--m4108); font-size: .95rem; line-height: 1.8;
    margin-bottom: 18px;
}
.m91697 p:last-child { margin-bottom: 0; }
.m91697 strong { color: var(--ba337); }
.m91697 a { color: var(--ece18); text-decoration: underline; text-underline-offset: 3px; }
.m91697 a:hover { color: var(--g3c18); }

/* ===== IMAGE-TEXT (image + text side by side) ===== */
.c56a23 {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    align-items: center; margin-top: 24px;
}
.b1fb5d { direction: rtl; }
.b1fb5d > * { direction: ltr; }
.h36db5 { border-radius: var(--pff5f); overflow: hidden; }
.h36db5 img {
    width: 100%; height: auto; display: block;
    border-radius: var(--pff5f);
    border: 1px solid rgba(212,168,83,.15);
    box-shadow: 0 8px 32px rgba(0,0,0,.45);
}
.k07489 { color: var(--m4108); font-size: .93rem; line-height: 1.7; }
.k07489 strong { color: var(--ba337); }
.k07489 a { color: var(--ece18); }
@media (max-width: 768px) {
    .c56a23 { grid-template-columns: 1fr; gap: 24px; }
    .b1fb5d { direction: ltr; }
}

/* ===== AGE BADGE ===== */
.age-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border: 2px solid var(--p2dc3);
    border-radius: 50%; font-weight: 700; font-size: .8rem;
    color: var(--p2dc3); margin: 0 6px; vertical-align: middle;
}

/* ===== SCROLL TO TOP ===== */
.j52cd0 {
    position: fixed; bottom: 28px; right: 28px;
    width: 44px; height: 44px; background: var(--jccb0);
    color: var(--ba337); 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(--k3dc5);
}
.j52cd0.c8ede3 { opacity: 1; visibility: visible; }
.j52cd0:hover { transform: translateY(-3px); background: var(--p2dc3); }

/* ===== REVIEW SCORE (review page) ===== */
.g1eb7c {
    font-family: var(--hbcdd); font-size: 5rem; font-weight: 700;
    background: linear-gradient(135deg, var(--g3c18), var(--ece18));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1;
}
.score-stars { font-size: 1.8rem; color: var(--g3c18); 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(--m4108); width: 55%; }
.score-table td:last-child { color: var(--g3c18); font-weight: 600; text-align: right; }

/* ===== STICKY MOBILE CTA ===== */
.o7d232 {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
    padding: 12px 16px;
    background: rgba(10,8,6,.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(212,168,83,.2);
    text-align: center;
    box-shadow: 0 -4px 24px rgba(0,0,0,.55);
}
.o7d232 .da1380 { 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) {
    .f87c75 { display: none; }
    .o45f82 .g5b34e { display: none; }
    .c27ea9 { display: flex; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .b79945 { grid-template-columns: 1fr; }
    section, .fbe890 { padding: clamp(36px, 6vw, 56px) 0; }
    .hero { padding: clamp(48px, 8vw, 80px) 0 clamp(36px, 6vw, 56px); }
    .i4d250 { gap: 8px 14px; }
    .steps { grid-template-columns: 1fr 1fr; }
    .lee135 { grid-template-columns: 1fr 1fr; }
    .ne8200 { grid-template-columns: 1fr 1fr; }
    .d60fb0 { grid-template-columns: 1fr 100px auto; }
    .o7d232 { display: block; }
    body { padding-bottom: 72px; }
}
@media (max-width: 480px) {
    body { font-size: 15px; }
    .h71978 { padding: 15px 30px; font-size: 1rem; }
    .steps { grid-template-columns: 1fr; }
    .lee135 { grid-template-columns: 1fr; }
    .ne8200 { grid-template-columns: 1fr; }
    .m50cc3 { padding: 10px 0; }
    .hero-stat { font-size: .83rem; padding: 5px 10px; }
    .g1eb7c { font-size: 3.5rem; }
    .d60fb0 { grid-template-columns: 1fr 80px auto; gap: 8px; }
    .b79945 { grid-template-columns: 1fr; }
    .f323ed { padding: 24px 18px; }
}

/* ===== LANGUAGE SWITCHER ===== */
.l4211b {
    position: relative;
    margin-left: 10px;
    flex-shrink: 0;
}
.l4211b summary.n7d4ab {
    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(--ba337);
    padding: 6px 11px;
    border-radius: var(--f4315);
    cursor: pointer;
    font-size: .82rem;
    font-family: var(--p05e9);
    white-space: nowrap;
    transition: background .2s, border-color .2s;
    user-select: none;
}
.l4211b summary.n7d4ab::-webkit-details-marker { display: none; }
.l4211b summary.n7d4ab::marker { display: none; }
.l4211b:hover summary.n7d4ab,
.l4211b[open] summary.n7d4ab {
    background: rgba(255,255,255,.13);
    border-color: rgba(212,168,83,.35);
    color: var(--g3c18);
}
.j6056e { font-size: .7rem; opacity: .7; transition: transform .2s; }
.l4211b[open] .j6056e { transform: rotate(180deg); }

.m225e7 {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: var(--e3326);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--n9a18);
    padding: 6px;
    list-style: none;
    z-index: 300;
    box-shadow: 0 8px 32px rgba(0,0,0,.6);
    min-width: 160px;
}
.l4211b[open] .m225e7 {
    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); }
}
.m225e7 li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    color: var(--l51de);
    border-radius: var(--f4315);
    font-size: .82rem;
    white-space: nowrap;
    transition: background .15s, color .15s;
}
.m225e7 li a:hover,
.m225e7 li a.n8694d {
    background: rgba(255,255,255,.08);
    color: var(--g3c18);
}
.m225e7 li a.n8694d { font-weight: 700; }

/* Mobile lang bar */
.bf4dd8 {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(255,255,255,.07);
    margin-top: 8px;
}
.bf4dd8 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(--f4315);
    color: var(--l51de);
    font-size: .78rem;
    transition: background .15s, color .15s;
}
.bf4dd8 a:hover,
.bf4dd8 a.cc4d7a {
    background: rgba(212,168,83,.12);
    border-color: rgba(212,168,83,.3);
    color: var(--g3c18);
}
.bf4dd8 a.cc4d7a { font-weight: 700; }

@media (max-width: 768px) {
    .l4211b { display: none; }
}


/* ===== STRUCTURAL VARIANT STYLES ===== */

/* info-grid variant B: list */
ul.ne8200, ul.hcfd69 { list-style: none; padding: 0; margin: 0; }

/* info-grid variant C: 2-column wider */
.mf55e9 { grid-template-columns: repeat(2, 1fr) !important; }
@media (max-width: 600px) { .mf55e9 { grid-template-columns: 1fr !important; } }

/* steps-grid variant B: ordered list */
ol.lee135, ol.o1e79b { list-style: none; padding: 0; margin: 0; counter-reset: step-counter; }
ol.o1e79b > li { counter-increment: step-counter; }
ol.o1e79b > li::before { content: counter(step-counter); font-weight: 700; font-size: 1.5rem; color: var(--jccb0); display: block; margin-bottom: .5rem; }

/* steps-grid variant C: timeline */
.c395c7 { display: flex; flex-direction: column; gap: 1.5rem; padding-left: 2rem; border-left: 3px solid var(--jccb0); }
.j1f736 { display: flex; align-items: flex-start; gap: 1rem; position: relative; }
.p5774c { width: 36px; height: 36px; border-radius: 50%; background: var(--jccb0); color: var(--ee8ce); display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; margin-left: -2.55rem; }
.n80211 h3 { margin-bottom: .25rem; }

/* info-table variant B: definition list */
dl.feb94d { display: grid; grid-template-columns: 1fr; gap: 0; }
.id0a93 { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,.08); }
.id0a93:last-child { border-bottom: none; }
.l74a47 { font-weight: 600; padding: .75rem 1rem; color: var(--jccb0); }
.gc7fea { padding: .75rem 1rem; }

/* faq variant B: accordion (div-based) */
.g0ee67 .keeac7 { cursor: pointer; width: 100%; text-align: left; background: none; border: none; color: inherit; font: inherit; padding: 1rem; }
.g0ee67 .l3df9a { display: none; }
.g0ee67 .p243d5.fa23db .l3df9a { display: block; }

/* faq variant C: definition list */
dl.acc4de { display: grid; gap: 0; }
dl.acc4de dt.lea8e3 { cursor: pointer; padding: 1rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.08); }
dl.acc4de dd.l3df9a { padding: .5rem 1rem 1rem; margin: 0; border-bottom: 1px solid rgba(255,255,255,.08); }


/* Related Links (cross-linking) */
.m106e4 { padding: 2rem 0; }
.m7c959 { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.m7c959 li a { display: inline-block; padding: .6rem 1.4rem; border-radius: var(--n9a18); border: 1px solid var(--g3c18); color: var(--g3c18); text-decoration: none; transition: all .2s ease; font-weight: 500; }
.m7c959 li a:hover { background: var(--g3c18); color: var(--ee8ce); }


/* Promo Banner (SVG image banners) */
.ifbe1c { margin: 1.5rem auto; text-align: center; max-width: 100%; display: flex; justify-content: center; }
.c1f3ab { display: block; max-width: 800px; margin: 0 auto; width: 100%; transition: transform .2s ease, box-shadow .2s ease; border-radius: 12px; overflow: hidden; }
.c1f3ab:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.be9b14 { width: 100%; height: auto; display: block; }
/* Card icon (replaces emoji in info-grid) */
.g4f972 { display: inline-block; vertical-align: middle; }
.g2faf4 .g4f972 { width: 32px; height: 32px; }

/* ===== KEY FACTS (AI/AEO) ===== */
.key-facts {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
    background: linear-gradient(145deg, var(--e3326), var(--d30e2));
    border-radius: var(--n9a18); padding: 24px; margin-top: 24px;
}
.fact-row { display: flex; flex-direction: column; gap: 4px; padding: 12px 16px; border-radius: var(--f4315); background: var(--gf76b); }
.fact-row dt { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--txt-2); }
.fact-row dd { margin: 0; font-size: 1.1rem; font-weight: 700; color: var(--g3c18); }
@media (max-width: 768px) { .key-facts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .key-facts { grid-template-columns: 1fr; } }

/* ===== ACCESSIBILITY (ui-ux-pro-max) ===== */
:focus-visible { outline: 2px solid var(--g3c18); 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; }
  .hee2e7 { animation: none; }
}
/* Touch targets: minimum 44x44px */
.da1380, .hee2e7, .h71978, .ic4115, .e258dc, .c27ea9, .keeac7, .lea8e3, .j52cd0, .o7d232 a, .n7d4ab { min-height: 44px; min-width: 44px; }
/* CTA button: replace box-shadow animation with pseudo-element opacity */
.hee2e7 { position: relative; overflow: visible; }
.hee2e7::after {
  content: ""; position: absolute; inset: -4px; border-radius: inherit;
  background: var(--g3c18); opacity: 0; z-index: -1; transition: opacity 0.3s ease-out;
}
.hee2e7:hover::after { opacity: 0.2; }
@keyframes pulse-glow { 0%, 100% { opacity: 0; } 50% { opacity: 0.15; } }
.hee2e7::after { animation: pulse-glow 3s ease-in-out infinite; }

/* ===== TRUST BADGES (mktg-marketing-psychology) ===== */
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
.hero-badge {
    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);
}
.hero-badge.freshness { color: var(--g3c18); border-color: rgba(212,168,67,0.3); }

/* ===== PAYMENT / PROVIDER / TRUST GRIDS ===== */
.payment-grid, .provider-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 20px; }
.payment-item, .provider-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px; min-width: 80px; border-radius: var(--f4315); background: var(--e3326); transition: transform 0.2s; }
.payment-item:hover, .provider-item:hover { transform: translateY(-2px); }
.payment-item span, .provider-item span { font-size: 0.75rem; color: var(--txt-2); text-align: center; }
.trust-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 20px; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 16px; border-radius: var(--f4315); background: var(--e3326); border: 1px solid rgba(255,255,255,0.05); text-decoration: none; transition: border-color 0.2s; }
.trust-item:hover { border-color: var(--g3c18); }
.trust-item span { font-size: 0.7rem; color: var(--g3c18); font-weight: 600; }

/* ===== USER REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 20px; }
.review-card { background: var(--e3326); border-radius: var(--n9a18); padding: 20px; border: 1px solid rgba(255,255,255,0.05); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--g3c18), var(--jccb0)); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--ee8ce); flex-shrink: 0; }
.review-stars { color: var(--g3c18); font-size: 14px; letter-spacing: 1px; }
.review-date { color: var(--e027e); font-size: 0.75rem; }
.review-card p { font-size: 0.9rem; color: var(--l51de); line-height: 1.6; }

/* === Per-domain layout === */
:root { --max-w: 1100px; }
:root { --radius: 16px; --radius-lg: 28px; --radius-sm: 10px; }
.section { padding: clamp(52px, 7vw, 80px) 0; }
.info-grid, .bonus-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.btn { border-radius: 4px; }
.btn-gold { animation: none; box-shadow: 0 2px 8px rgba(0,0,0,.3); }
.info-card:hover, .bonus-card:hover { box-shadow: none; }
body { line-height: 1.6; }
body { font-size: 15.5px; }
.section-alt + .section:not(.section-alt) { border-top: 2px solid var(--gold); opacity: .15; }
.image-text { grid-template-columns: 1fr; text-align: center; }
.image-text-reverse { direction: ltr; }
.info-card:hover { transform: translateY(-3px) rotate(0.5deg); }


/* ===== USA design language: Editorial Press (editorial) ===== */
:root{
  --cbg:#F7F3EA; --csurf:#FFFDF8; --csurf2:#EFE8D9;
  --ctext:#1A1611; --cmuted:#6A6253; --cacc:#B23A2E; --cacc2:#1A1611;
  --cbord:#D8CDB8; --cfh:'Playfair Display',Georgia,serif; --cfb:'Lora',Georgia,serif;
}
html{scroll-behavior:smooth;}
*{box-sizing:border-box;}
body{font-family:var(--cfb);color:var(--ctext)!important;line-height:1.6;}
h1,h2,h3,h4,.ld62dc,.e06a2c{font-family:var(--cfh);}
.o7135e{max-width:1140px;margin-inline:auto;padding-inline:24px;}
img{max-width:100%;}
main a{color:var(--cacc);}
.fbe890{padding:58px 0;position:relative;}
.ne8200{display:grid;grid-template-columns:repeat(auto-fit,minmax(232px,1fr));gap:20px;}
.ne8200.mf55e9{grid-template-columns:repeat(auto-fit,minmax(330px,1fr));}
.lee135{display:grid;grid-template-columns:repeat(auto-fit,minmax(232px,1fr));gap:20px;}
.b79945{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.key-facts{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:12px;}
.c56a23{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;}
.b1fb5d{direction:rtl;}.b1fb5d>*{direction:ltr;}
.h36db5 img,.h36db5 svg{width:100%;height:auto;}
.k07489 p{margin:0 0 1em;}
.acc4de{display:flex;flex-direction:column;gap:12px;max-width:860px;margin-inline:auto;}
.lea8e3{cursor:pointer;list-style:none;position:relative;}.lea8e3::-webkit-details-marker{display:none;}
.trust-grid{display:flex;flex-wrap:wrap;gap:14px;justify-content:center;}
.trust-item{display:inline-flex;align-items:center;gap:10px;text-decoration:none;}
.trust-item img{width:30px;height:30px;}
.be9b14{width:100%;height:auto;display:block;}
.logo-mark{vertical-align:middle;margin-right:9px;}
table{width:100%;border-collapse:collapse;}
table th,table td{padding:13px 16px;text-align:left;}
@media (prefers-reduced-motion: no-preference){
  @keyframes u-float{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
  .hero-art img,.hero-art svg{animation:u-float 6.5s ease-in-out infinite;}
  section.u-rev{opacity:0;transform:translateY(22px);transition:opacity .6s ease,transform .6s ease;}
  section.u-rev.u-in{opacity:1;transform:none;}
}
@media (max-width:900px){
  .f0c37e .o7135e{grid-template-columns:1fr !important;}
  .c56a23,.b79945{grid-template-columns:1fr !important;}
  .hero-art{order:-1;}.b1fb5d{direction:ltr;}
}

/* EDITORIAL PRESS — светлая бумага, журнальная вёрстка, display-сериф, рамки */
body{background:#F7F3EA!important;color:#1A1611!important;}
header,.l104bc{background:#F7F3EA!important;border-bottom:2px solid #1A1611!important;}
header a,nav a{color:#1A1611!important;font-family:var(--cfb);font-size:.9rem;}header a:hover{color:#B23A2E!important;}
.f0c37e{padding:70px 0 50px;border-bottom:1px solid #D8CDB8;background:#F7F3EA!important;}
.f0c37e::before{display:none!important;}
.f0c37e.has-art .o7135e{display:grid;grid-template-columns:1.25fr .75fr;gap:46px;align-items:center;}
.ld62dc{font-weight:800;font-size:clamp(2.4rem,5.4vw,4.2rem);line-height:1.02;color:#1A1611!important;-webkit-text-fill-color:#1A1611!important;background:none!important;letter-spacing:-.01em;}
.m45a7c{color:#6A6253;font-size:1.16rem;max-width:56ch;margin:20px 0 26px;font-style:italic;}
.e06a2c{text-align:left;font-weight:800;font-size:clamp(1.8rem,3.2vw,2.6rem);color:#1A1611!important;border-bottom:2px solid #1A1611;padding-bottom:12px;margin-bottom:30px;}
.e06a2c::before{content:"§ ";color:#B23A2E;}
.hee2e7,.e258dc{background:#B23A2E!important;color:#FFFDF8!important;border:none!important;border-radius:2px;font-family:var(--cfb);font-weight:600;letter-spacing:.02em;}
.h71978{padding:14px 30px;}.hee2e7:hover,.e258dc:hover{background:#1A1611!important;}
.hero-trust{display:flex;gap:0;flex-wrap:wrap;margin-top:18px;border-top:1px solid #D8CDB8;}
.hero-badge{background:none!important;border:none!important;border-right:1px solid #D8CDB8!important;border-radius:0!important;color:#6A6253!important;padding:10px 16px 10px 0!important;margin-right:16px;font-size:.8rem;text-transform:uppercase;letter-spacing:.05em;}
.i7fb68,.o1ff40,.eda6e5,.j0993a,.l28512{background:#FFFDF8!important;border:1px solid #D8CDB8!important;border-radius:2px;padding:26px;box-shadow:none!important;transition:border-color .2s;}
.i7fb68:hover,.o1ff40:hover,.eda6e5:hover{border-color:#1A1611!important;}
.i7fb68 h3,.o1ff40 h3,.eda6e5 h3{color:#1A1611!important;font-family:var(--cfh);font-weight:700;font-size:1.24rem;}
.i7fb68 p,.o1ff40 p,.eda6e5 p{color:#6A6253!important;font-family:var(--cfb);}
.o1ff40{border-left:4px solid #B23A2E!important;}
.k07489{color:#1A1611;font-size:1.08rem;column-gap:30px;}.k07489 p:first-of-type::first-letter{font-family:var(--cfh);font-size:3.2em;float:left;line-height:.8;padding:6px 10px 0 0;color:#B23A2E;}
.k07489 strong{color:#1A1611;}.h36db5 img{border:1px solid #D8CDB8;border-radius:2px;}
.if5462{background:#EFE8D9!important;}
.p243d5{background:none!important;border:none!important;border-bottom:1px solid #D8CDB8!important;border-radius:0!important;padding:6px 0;}
.lea8e3{color:#1A1611!important;font-family:var(--cfh);font-weight:700;font-size:1.18rem;padding:16px 0;}
details.p243d5 summary.lea8e3::after{content:"+";position:absolute;right:0;top:15px;color:#B23A2E;}
details.p243d5[open] summary.lea8e3::after{content:"\2013";}
.l3df9a{color:#6A6253!important;font-family:var(--cfb);padding-bottom:14px;}
.trust-item{background:none!important;border:1px solid #1A1611!important;border-radius:2px;padding:11px 17px;color:#1A1611!important;text-transform:uppercase;font-size:.78rem;letter-spacing:.05em;}
.c1f3ab{border-radius:2px;display:block;overflow:hidden;border:1px solid #D8CDB8;}
table{border:1px solid #D8CDB8;}table th{background:#EFE8D9!important;color:#1A1611!important;border-bottom:2px solid #1A1611;}table td{border-bottom:1px solid #D8CDB8;color:#1A1611!important;}
footer,.p17ff4{background:#EFE8D9!important;border-top:2px solid #1A1611!important;color:#6A6253!important;}footer a{color:#1A1611!important;}
.h0bf4c a{color:#6A6253!important;}

.m91697 strong,.c56a23 strong,.faq strong,.b79945 strong{color:inherit !important;}
