@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Lato:wght@400;700&display=swap');
/* ===== MIDNIGHT ROSE — Design System ===== */
:root {
    --l5f0b:        #B76E79;
    --fe745:  #D4A0A8;
    --eca71:   #8E4F58;
    --n8c11:         #E8B4B8;
    --peb42:         #B76E79;
    --e8a8d:    #8E4F58;
    --jafbf:         #B76E79;
    --b285b:    #8E4F58;
    --a3705:           #08060A;
    --f9191:         #100C14;
    --db9fa:         #18121C;
    --ibb78:         #201824;
    --g6ab0:        #FFFFFF;
    --lb759:         #B8A8B4;
    --l8dc2:       #7E6E7A;
    --o7dad:       #B8A8B4;
    --m1245:    'Cormorant Garamond', Georgia, serif;
    --h96d2:    'Lato', sans-serif;
    --h45c9:       14px;
    --n1505:    22px;
    --fb59f:    8px;
    --g2a64:        1100px;
    --ec5f1:       0 4px 28px rgba(0,0,0,.55);
    --n9f13:         0 0 32px rgba(183,110,121,.25);
    --mauve:        #9B7FA0;
    --blush:        #E8B4B8;
}

/* ===== 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(--h96d2);
    background: var(--a3705);
    color: var(--g6ab0);
    line-height: 1.75;
    font-size: 16px;
    overflow-x: hidden;
}
a { color: var(--fe745); text-decoration: none; transition: color .2s; }
a:hover { color: var(--n8c11); }
img { max-width: 100%; height: auto; display: block; }

.g19ebb { width: 92%; max-width: var(--g2a64); margin: 0 auto; }

.df7df3 {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); border: 0;
}

/* ===== SKIP LINK ===== */
.k9cbd6 {
    position: absolute; top: -100px; left: 50%;
    transform: translateX(-50%);
    background: var(--l5f0b); color: var(--g6ab0);
    padding: 8px 16px; border-radius: var(--fb59f);
    z-index: 999; transition: top .2s;
}
.k9cbd6:focus { top: 10px; }

/* ===== SITE HEADER ===== */
.a4e0f8 {
    position: sticky; top: 0; z-index: 100;
    background: rgba(8,6,10,.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(183,110,121,.12);
}
.fb32c5 {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 0; gap: 16px;
}
.kc9446 {
    font-family: var(--m1245);
    font-size: clamp(1.05rem, 2.5vw, 1.4rem);
    font-weight: 700; color: var(--g6ab0);
    white-space: nowrap; text-decoration: none;
    letter-spacing: .5px;
}
.kc9446:hover { color: var(--fe745); }

/* Main Nav */
.bf7e83 { display: flex; align-items: center; gap: 20px; }
.j487e6 {
    display: flex; gap: 26px; list-style: none;
    font-size: .9rem; font-weight: 400; align-items: center;
    letter-spacing: .2px;
}
.j487e6 a {
    color: var(--lb759); padding: 4px 0;
    position: relative; transition: color .2s; text-decoration: none;
}
.j487e6 a:hover { color: var(--fe745); }

/* Language Select */
.kdef0e {
    background: var(--db9fa); color: var(--g6ab0);
    border: 1px solid rgba(183,110,121,.2);
    border-radius: var(--fb59f);
    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='%23B76E79'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 8px center;
    transition: border-color .2s;
}
.kdef0e:hover, .kdef0e:focus { border-color: var(--l5f0b); outline: none; }

/* Menu Toggle */
.a3dab5 {
    display: none; background: none; border: none;
    cursor: pointer; padding: 6px; width: 36px; height: 36px;
    align-items: center; justify-content: center; position: relative;
}
.g6cc89, .g6cc89::before, .g6cc89::after {
    display: block; width: 24px; height: 2px;
    background: var(--g6ab0); border-radius: 2px; transition: transform .3s, opacity .3s;
}
.g6cc89 { position: relative; }
.g6cc89::before, .g6cc89::after { content: ''; position: absolute; left: 0; }
.g6cc89::before { top: -7px; }
.g6cc89::after { top: 7px; }

/* Mobile Nav */
.f82d91 {
    display: none; position: fixed; inset: 0;
    background: rgba(8,6,10,.97); z-index: 200;
    align-items: center; justify-content: center;
    flex-direction: column; padding: 60px 20px;
}
.f82d91.a8c64c { display: flex; }
.p44d73 {
    list-style: none; display: flex; flex-direction: column;
    align-items: center; gap: 28px;
}
.p44d73 a {
    font-size: 1.2rem; font-weight: 700; color: var(--g6ab0); text-decoration: none;
    font-family: var(--m1245); letter-spacing: .5px;
}
.p44d73 a:hover { color: var(--fe745); }

/* ===== BUTTONS ===== */
.m77254 {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--m1245); font-weight: 700; font-size: .95rem;
    padding: 13px 30px; border-radius: var(--h45c9); border: none;
    cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s;
    text-decoration: none; white-space: nowrap; letter-spacing: .4px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--l5f0b) 0%, var(--mauve) 100%);
    color: var(--g6ab0); box-shadow: var(--n9f13);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 44px rgba(183,110,121,.5);
    color: var(--g6ab0);
}
.btn-secondary {
    background: transparent; color: var(--fe745);
    border: 2px solid var(--l5f0b);
}
.btn-secondary:hover { background: rgba(183,110,121,.08); color: var(--n8c11); }

/* Gold CTA — main call-to-action (Rose Gold) */
@keyframes pulse-glow {
    0%,100% { box-shadow: 0 0 22px rgba(183,110,121,.3); }
    50%      { box-shadow: 0 0 48px rgba(183,110,121,.6), 0 0 88px rgba(183,110,121,.15); }
}
.ieff2d {
    background: linear-gradient(135deg, #D4A0A8 0%, #B76E79 55%, #8E4F58 100%);
    color: #12080A; font-weight: 700; font-size: 1rem;
    box-shadow: 0 0 28px rgba(183,110,121,.35);
    animation: pulse-glow 3s ease-in-out infinite;
}
.ieff2d:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 56px rgba(183,110,121,.65);
    color: #12080A; animation: none;
}

.jbc2a4 { padding: 18px 44px; font-size: 1.1rem; border-radius: var(--n1505); }
.i5c85d { padding: 8px 18px; font-size: .85rem; border-radius: var(--fb59f); }

/* Nav CTA in header */
.n2015d {
    background: linear-gradient(135deg, #D4A0A8 0%, var(--l5f0b) 100%);
    color: #12080A !important; font-weight: 700;
    padding: 9px 22px; border-radius: var(--fb59f);
    box-shadow: 0 0 16px rgba(183,110,121,.25);
    transition: transform .2s, box-shadow .2s;
}
.n2015d:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(183,110,121,.5);
    color: #12080A !important;
}

/* ===== PAGE HERO (subpages) ===== */
.a0c4ba {
    padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 74px);
    text-align: center;
    background:
        radial-gradient(ellipse 80% 55% at 50% 0%, rgba(183,110,121,.12) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(155,127,160,.06) 0%, transparent 60%),
        var(--a3705);
    position: relative; overflow: hidden;
}
.a0c4ba::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.2' fill='rgba(183,110,121,0.04)'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hea3bf {
    font-family: var(--m1245);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700; line-height: 1.15; margin-bottom: 18px;
    background: linear-gradient(135deg, #D4A0A8 0%, #B76E79 50%, #8E4F58 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.c52a02 {
    font-size: clamp(.97rem, 2vw, 1.12rem); color: var(--lb759);
    max-width: 640px; margin: 0 auto 34px; line-height: 1.75;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: clamp(68px, 10vw, 116px) 0 clamp(56px, 8vw, 92px);
    text-align: center; overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(183,110,121,.11) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(155,127,160,.07) 0%, transparent 60%),
        var(--a3705);
}
.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.2' fill='rgba(183,110,121,0.03)'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero h1 {
    font-family: var(--m1245);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700; line-height: 1.12; margin-bottom: 20px;
    background: linear-gradient(135deg, #D4A0A8 0%, #B76E79 45%, #8E4F58 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem); color: var(--lb759);
    max-width: 660px; margin: 0 auto 30px; line-height: 1.75;
}
.hero-stats {
    display: flex; justify-content: center;
    gap: clamp(10px, 3vw, 32px); flex-wrap: wrap; margin-bottom: 34px;
}
.hero-stat {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .92rem; color: var(--lb759);
    padding: 8px 16px;
    background: rgba(183,110,121,.06);
    border: 1px solid rgba(183,110,121,.14);
    border-radius: var(--fb59f);
}
.hero-stat strong { color: var(--fe745); }

/* ===== SECTIONS ===== */
.gbfa06 { padding: clamp(56px, 7vw, 84px) 0; }
.a30d74 { background: var(--f9191); }
.section-tag {
    display: inline-block; font-size: .75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--l5f0b); margin-bottom: 10px;
    font-family: var(--h96d2);
}
.gbfa06 h2, .n87878 {
    font-family: var(--m1245);
    font-size: clamp(1.55rem, 3.5vw, 2.2rem);
    font-weight: 700; margin-bottom: 18px; line-height: 1.22;
}
.gbfa06 h3 {
    font-family: var(--m1245); font-size: 1.15rem; font-weight: 600;
    margin: 30px 0 10px; color: var(--fe745);
}
.gbfa06 p, .section-desc {
    color: var(--lb759); font-size: .95rem; line-height: 1.75; margin-bottom: 14px;
}
.section-desc { max-width: 700px; margin-bottom: 38px; }
.gbfa06 ul, .gbfa06 ol {
    color: var(--lb759); font-size: .93rem; line-height: 1.75;
    padding-left: 20px; margin-bottom: 16px;
}
.gbfa06 li { margin-bottom: 8px; }
.gbfa06 li strong { color: var(--g6ab0); }

/* ===== CARDS / GRID ===== */
.grid { display: grid; gap: 22px; }
.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(--db9fa), var(--ibb78));
    border: 1px solid rgba(183,110,121,.1);
    border-radius: var(--h45c9); padding: 30px 26px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.card:hover {
    transform: translateY(-4px);
    border-color: rgba(183,110,121,.28);
    box-shadow: var(--ec5f1);
}
.card-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.card h3 {
    font-family: var(--m1245); font-size: 1.1rem; font-weight: 700;
    margin-bottom: 10px; color: var(--g6ab0);
}
.card p { color: var(--lb759); font-size: .9rem; line-height: 1.65; }

/* ===== INFO TABLE ===== */
.df9d61 { overflow-x: auto; margin: 24px 0; border-radius: var(--fb59f); }
.idec32 { width: 100%; border-collapse: collapse; font-size: .93rem; margin: 0; }
.idec32 thead th {
    background: var(--ibb78); color: var(--g6ab0); font-weight: 600;
    font-size: .88rem; text-align: left; padding: 14px 16px;
    border-bottom: 2px solid rgba(183,110,121,.18);
}
.idec32 thead th:first-child { border-radius: var(--fb59f) 0 0 0; }
.idec32 thead th:last-child { border-radius: 0 var(--fb59f) 0 0; }
.idec32 tr { border-bottom: 1px solid rgba(255,255,255,.05); }
.idec32 td { padding: 13px 16px; }
.idec32 td:first-child { color: var(--lb759); font-weight: 500; width: 42%; }
.idec32 td:last-child { color: var(--g6ab0); font-weight: 600; }
.idec32 tr:hover { background: rgba(183,110,121,.04); }

/* ===== STEPS ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 24px; counter-reset: step;
}
.step {
    text-align: center; padding: 26px 16px; counter-increment: step;
}
.step::before {
    content: counter(step);
    display: flex; align-items: center; justify-content: center;
    width: 50px; height: 50px; margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--l5f0b), var(--mauve));
    border-radius: 50%; font-family: var(--m1245);
    font-size: 1.25rem; font-weight: 700; color: var(--g6ab0);
}
.step h3 { font-size: .97rem; font-weight: 700; margin-bottom: 8px; font-family: var(--m1245); }
.step p { color: var(--lb759); font-size: .87rem; line-height: 1.6; }

/* ===== FAQ — details/summary ===== */
.l3e4c4 { max-width: 800px; margin: 0 auto; }
details.ibf4b4 { border-bottom: 1px solid rgba(255,255,255,.06); }
details.ibf4b4 summary {
    display: block; list-style: none;
    color: var(--g6ab0); font-family: var(--m1245);
    font-size: 1rem; font-weight: 600;
    padding: 22px 40px 22px 0;
    cursor: pointer; position: relative; transition: color .2s;
}
details.ibf4b4 summary::-webkit-details-marker { display: none; }
details.ibf4b4 summary::marker { display: none; content: ''; }
details.ibf4b4 summary::after {
    content: '+'; position: absolute; right: 0; top: 50%;
    transform: translateY(-50%); font-size: 1.4rem;
    color: var(--l5f0b); transition: transform .3s;
}
details.ibf4b4[open] summary::after { content: '\2212'; }
details.ibf4b4 summary:hover { color: var(--fe745); }
details.ibf4b4 > p { padding: 0 0 22px; color: var(--lb759); font-size: .9rem; line-height: 1.75; }
details.ibf4b4 > div { padding: 0 0 22px; color: var(--lb759); font-size: .9rem; line-height: 1.75; }
.faq-section { background: var(--f9191); }

/* ===== INFO GRID & CARDS ===== */
.cc388c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px; margin-top: 26px;
}
.fab757 {
    background: linear-gradient(145deg, var(--db9fa), var(--ibb78));
    border: 1px solid rgba(183,110,121,.1); border-radius: var(--h45c9); padding: 30px 24px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.fab757:hover {
    transform: translateY(-5px);
    border-color: rgba(183,110,121,.3);
    box-shadow: var(--ec5f1);
}
.ja3e5c { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.fab757 h3 {
    font-family: var(--m1245); font-size: 1.1rem; font-weight: 700;
    margin-bottom: 10px; color: var(--g6ab0);
}
.fab757 p { color: var(--lb759); font-size: .9rem; line-height: 1.65; }

/* ===== BONUS GRID & CARDS ===== */
.gd4968 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px; margin-top: 26px;
}
.me09a7 {
    background: linear-gradient(145deg, var(--db9fa), var(--ibb78));
    border: 1px solid rgba(183,110,121,.12); border-radius: var(--h45c9); padding: 30px 24px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.me09a7:hover { transform: translateY(-5px); border-color: rgba(183,110,121,.35); }
.me09a7 h3 {
    font-family: var(--m1245); font-size: 1.1rem; font-weight: 700;
    margin-bottom: 10px; color: var(--l5f0b);
}
.me09a7 p { color: var(--lb759); font-size: .9rem; line-height: 1.65; }

/* ===== STEPS GRID & CARDS ===== */
.l1bfab {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 22px; margin-top: 26px;
}
.lb48c7 { text-align: center; padding: 24px 14px; }
.h01e5b {
    display: flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--l5f0b), var(--mauve));
    border-radius: 50%; font-family: var(--m1245);
    font-size: 1.2rem; font-weight: 700; color: var(--g6ab0);
    box-shadow: 0 0 24px rgba(183,110,121,.3);
}
.lb48c7 h3 {
    font-family: var(--m1245); font-size: 1rem; font-weight: 700;
    margin-bottom: 8px; color: var(--g6ab0);
}
.lb48c7 p { color: var(--lb759); font-size: .87rem; line-height: 1.55; }

/* ===== REVIEW SCORE CARD ===== */
.n2c4c6 {
    background: linear-gradient(145deg, var(--db9fa), var(--ibb78));
    border: 1px solid rgba(183,110,121,.16); border-radius: var(--n1505);
    padding: 38px 34px; text-align: center;
    max-width: 560px; margin: 0 auto 34px;
    box-shadow: 0 8px 44px rgba(0,0,0,.45);
}
.je9c12 { margin-top: 26px; }
.nac7e7 {
    display: grid; grid-template-columns: 1fr 140px auto;
    align-items: center; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: .9rem;
}
.nac7e7 > span:first-child { color: var(--lb759); text-align: left; }
.o61e88 {
    height: 7px; background: rgba(255,255,255,.07);
    border-radius: 4px; overflow: hidden;
}
.af6cfd {
    height: 100%;
    background: linear-gradient(90deg, var(--l5f0b) 0%, #D4A0A8 100%);
    border-radius: 4px;
}
.nac7e7 > span:last-child { color: var(--fe745); font-weight: 700; min-width: 28px; text-align: right; }

/* ===== PROS / CONS ===== */
.c45764 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 30px; }
.ndaec4, .de98e2 {
    background: linear-gradient(145deg, var(--db9fa), var(--ibb78));
    border-radius: var(--h45c9); padding: 26px 24px;
}
.ndaec4 { border-top: 3px solid var(--l5f0b); }
.de98e2 { border-top: 3px solid #8E4444; }
.ndaec4 h3, .ndaec4 h4 { color: var(--fe745); margin-bottom: 14px; font-size: 1.05rem; font-family: var(--m1245); }
.de98e2 h3, .de98e2 h4 { color: #C86060; margin-bottom: 14px; font-size: 1.05rem; font-family: var(--m1245); }
.ndaec4 ul, .de98e2 ul { list-style: none; padding: 0; margin: 0; }
.ndaec4 li::before { content: '\2713 '; color: var(--l5f0b); font-weight: 700; }
.de98e2 li::before { content: '\2717 '; color: #8E4444; font-weight: 700; }
.ndaec4 li, .de98e2 li { padding: 6px 0; color: var(--lb759); font-size: .9rem; line-height: 1.55; }

/* ===== CTA BANNER ===== */
.o91cfe {
    text-align: center; padding: clamp(56px, 7vw, 84px) 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(183,110,121,.08) 0%, transparent 65%),
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(155,127,160,.06) 0%, transparent 70%),
        var(--f9191);
    border-top: 1px solid rgba(183,110,121,.1);
    border-bottom: 1px solid rgba(183,110,121,.1);
}
.o91cfe h2 {
    font-family: var(--m1245);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700; margin-bottom: 14px;
    background: linear-gradient(135deg, #D4A0A8, #B76E79);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.o91cfe p { color: var(--lb759); margin-bottom: 34px; font-size: .97rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: linear-gradient(135deg, rgba(183,110,121,.07), rgba(155,127,160,.04));
    border: 1px solid rgba(183,110,121,.18); border-left: 4px solid var(--l5f0b);
    border-radius: var(--fb59f); padding: 22px 26px; margin: 26px 0;
}
.highlight-box p { color: var(--lb759); font-size: .9rem; }
.highlight-box strong { color: var(--fe745); }

/* ===== BREADCRUMB ===== */
.p26b8a { padding: 14px 0; font-size: .82rem; }
.df99f9 { display: flex; list-style: none; gap: 8px; flex-wrap: wrap; }
.df99f9 li + li::before { content: '\203A'; margin-right: 8px; color: var(--l8dc2); }
.p26b8a a { color: var(--l8dc2); }
.p26b8a a:hover { color: var(--fe745); }
.p26b8a [aria-current] { color: var(--l5f0b); }

/* ===== SITE FOOTER ===== */
.m330a1 {
    background: var(--a3705); border-top: 1px solid rgba(255,255,255,.05);
    padding: 52px 0 30px; font-size: .85rem;
}
.footer-nav { margin-bottom: 26px; }
.l4de3b {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 10px 26px; list-style: none;
}
.l4de3b a {
    color: var(--l8dc2); transition: color .2s;
    text-decoration: none; font-size: .88rem;
}
.l4de3b a:hover { color: var(--fe745); }

.j308fa {
    text-align: center; padding: 26px 0 18px;
    border-top: 1px solid rgba(255,255,255,.05); margin-top: 8px;
}
.j308fa p {
    color: var(--l8dc2); font-size: .8rem; line-height: 1.65;
    max-width: 700px; margin: 10px auto 0;
}
.j308fa a { color: var(--l5f0b); }
.n1e280 { text-align: center; color: var(--l8dc2); font-size: .78rem; margin-top: 14px; }

/* ===== TEXT-CONTENT (SEO long-form) ===== */
.o20bc6 { max-width: 800px; margin: 0 auto; }
.o20bc6 p {
    color: var(--lb759); font-size: .95rem; line-height: 1.85;
    margin-bottom: 20px;
}
.o20bc6 p:last-child { margin-bottom: 0; }
.o20bc6 strong { color: var(--g6ab0); }
.o20bc6 a { color: var(--fe745); text-decoration: underline; text-underline-offset: 3px; }
.o20bc6 a:hover { color: var(--n8c11); }

/* ===== IMAGE-TEXT (image + text side by side) ===== */
.p05dba {
    display: grid; grid-template-columns: 1fr 1fr; gap: 44px;
    align-items: center; margin-top: 26px;
}
.faecfa { direction: rtl; }
.faecfa > * { direction: ltr; }
.f2b09c { border-radius: var(--n1505); overflow: hidden; }
.f2b09c img {
    width: 100%; height: auto; display: block;
    border-radius: var(--n1505);
    border: 1px solid rgba(183,110,121,.12);
    box-shadow: 0 8px 36px rgba(0,0,0,.45);
}
.o9756d { color: var(--lb759); font-size: .93rem; line-height: 1.75; }
.o9756d strong { color: var(--g6ab0); }
.o9756d a { color: var(--fe745); }
@media (max-width: 768px) {
    .p05dba { grid-template-columns: 1fr; gap: 24px; }
    .faecfa { direction: ltr; }
}

/* ===== AGE BADGE ===== */
.age-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border: 2px solid var(--eca71);
    border-radius: 50%; font-weight: 700; font-size: .8rem;
    color: var(--eca71); margin: 0 6px; vertical-align: middle;
}

/* ===== SCROLL TO TOP ===== */
.j63e6a {
    position: fixed; bottom: 28px; right: 28px;
    width: 44px; height: 44px; background: var(--l5f0b);
    color: var(--g6ab0); 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(--ec5f1);
}
.j63e6a.mcbcde { opacity: 1; visibility: visible; }
.j63e6a:hover { transform: translateY(-3px); background: var(--eca71); }

/* ===== REVIEW SCORE (review page) ===== */
.h853d2 {
    font-family: var(--m1245); font-size: 5rem; font-weight: 700;
    background: linear-gradient(135deg, #D4A0A8, #B76E79);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1;
}
.score-stars { font-size: 1.8rem; color: var(--l5f0b); letter-spacing: 3px; margin: 10px 0; }
.score-table { width: 100%; border-collapse: collapse; margin-top: 22px; font-size: .9rem; }
.score-table td { padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,.05); }
.score-table td:first-child { color: var(--lb759); width: 55%; }
.score-table td:last-child { color: var(--fe745); font-weight: 600; text-align: right; }

/* ===== STICKY MOBILE CTA ===== */
.n7a191 {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
    padding: 12px 16px;
    background: rgba(8,6,10,.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(183,110,121,.18);
    text-align: center;
    box-shadow: 0 -4px 28px rgba(0,0,0,.55);
}
.n7a191 .m77254 { 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) {
    .j487e6 { display: none; }
    .bf7e83 .kdef0e { display: none; }
    .a3dab5 { display: flex; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .c45764 { grid-template-columns: 1fr; }
    section, .gbfa06 { padding: clamp(36px, 6vw, 56px) 0; }
    .hero { padding: clamp(48px, 8vw, 80px) 0 clamp(36px, 6vw, 56px); }
    .l4de3b { gap: 8px 14px; }
    .steps { grid-template-columns: 1fr 1fr; }
    .l1bfab { grid-template-columns: 1fr 1fr; }
    .cc388c { grid-template-columns: 1fr 1fr; }
    .nac7e7 { grid-template-columns: 1fr 100px auto; }
    .n7a191 { display: block; }
    body { padding-bottom: 72px; }
}
@media (max-width: 480px) {
    body { font-size: 15px; }
    .jbc2a4 { padding: 15px 30px; font-size: 1rem; }
    .steps { grid-template-columns: 1fr; }
    .l1bfab { grid-template-columns: 1fr; }
    .cc388c { grid-template-columns: 1fr; }
    .fb32c5 { padding: 10px 0; }
    .hero-stat { font-size: .83rem; padding: 5px 10px; }
    .h853d2 { font-size: 3.5rem; }
    .nac7e7 { grid-template-columns: 1fr 80px auto; gap: 8px; }
    .c45764 { grid-template-columns: 1fr; }
    .n2c4c6 { padding: 24px 18px; }
}

/* ===== LANGUAGE SWITCHER ===== */
.h961e6 {
    position: relative;
    margin-left: 10px;
    flex-shrink: 0;
}
.h961e6 summary.de72f1 {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--g6ab0);
    padding: 6px 11px;
    border-radius: var(--fb59f);
    cursor: pointer;
    font-size: .82rem;
    font-family: var(--h96d2);
    white-space: nowrap;
    transition: background .2s, border-color .2s;
    user-select: none;
}
.h961e6 summary.de72f1::-webkit-details-marker { display: none; }
.h961e6 summary.de72f1::marker { display: none; }
.h961e6:hover summary.de72f1,
.h961e6[open] summary.de72f1 {
    background: rgba(255,255,255,.1);
    border-color: rgba(183,110,121,.35);
    color: var(--fe745);
}
.jb3b03 { font-size: .7rem; opacity: .7; transition: transform .2s; }
.h961e6[open] .jb3b03 { transform: rotate(180deg); }

.j08734 {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: var(--db9fa);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--h45c9);
    padding: 6px;
    list-style: none;
    z-index: 300;
    box-shadow: 0 8px 36px rgba(0,0,0,.65);
    min-width: 160px;
}
.h961e6[open] .j08734 {
    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); }
}
.j08734 li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    color: var(--o7dad);
    border-radius: var(--fb59f);
    font-size: .82rem;
    white-space: nowrap;
    transition: background .15s, color .15s;
}
.j08734 li a:hover,
.j08734 li a.oc0809 {
    background: rgba(183,110,121,.1);
    color: var(--fe745);
}
.j08734 li a.oc0809 { font-weight: 700; }

/* Mobile lang bar */
.f3ce79 {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(255,255,255,.06);
    margin-top: 8px;
}
.f3ce79 a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--fb59f);
    color: var(--o7dad);
    font-size: .78rem;
    transition: background .15s, color .15s;
}
.f3ce79 a:hover,
.f3ce79 a.p6d9a7 {
    background: rgba(183,110,121,.1);
    border-color: rgba(183,110,121,.28);
    color: var(--fe745);
}
.f3ce79 a.p6d9a7 { font-weight: 700; }

@media (max-width: 768px) {
    .h961e6 { display: none; }
}


/* ===== STRUCTURAL VARIANT STYLES ===== */

/* info-grid variant B: list */
ul.cc388c, ul.lf35ad { list-style: none; padding: 0; margin: 0; }

/* info-grid variant C: 2-column wider */
.c04e40 { grid-template-columns: repeat(2, 1fr) !important; }
@media (max-width: 600px) { .c04e40 { grid-template-columns: 1fr !important; } }

/* steps-grid variant B: ordered list */
ol.l1bfab, ol.m30e37 { list-style: none; padding: 0; margin: 0; counter-reset: step-counter; }
ol.m30e37 > li { counter-increment: step-counter; }
ol.m30e37 > li::before { content: counter(step-counter); font-weight: 700; font-size: 1.5rem; color: var(--l5f0b); display: block; margin-bottom: .5rem; }

/* steps-grid variant C: timeline */
.p23652 { display: flex; flex-direction: column; gap: 1.5rem; padding-left: 2rem; border-left: 3px solid var(--l5f0b); }
.p3ebbb { display: flex; align-items: flex-start; gap: 1rem; position: relative; }
.hbf85d { width: 36px; height: 36px; border-radius: 50%; background: var(--l5f0b); color: var(--a3705); display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; margin-left: -2.55rem; }
.a94f1c h3 { margin-bottom: .25rem; }

/* info-table variant B: definition list */
dl.n962b9 { display: grid; grid-template-columns: 1fr; gap: 0; }
.jc401e { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,.08); }
.jc401e:last-child { border-bottom: none; }
.n95001 { font-weight: 600; padding: .75rem 1rem; color: var(--l5f0b); }
.a6557e { padding: .75rem 1rem; }

/* faq variant B: accordion (div-based) */
.k7d37a .c7e5d7 { cursor: pointer; width: 100%; text-align: left; background: none; border: none; color: inherit; font: inherit; padding: 1rem; }
.k7d37a .pb4a9d { display: none; }
.k7d37a .ibf4b4.a8c64c .pb4a9d { display: block; }

/* faq variant C: definition list */
dl.l3e4c4 { display: grid; gap: 0; }
dl.l3e4c4 dt.j24db5 { cursor: pointer; padding: 1rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.08); }
dl.l3e4c4 dd.pb4a9d { padding: .5rem 1rem 1rem; margin: 0; border-bottom: 1px solid rgba(255,255,255,.08); }


/* Related Links (cross-linking) */
.pa70a8 { padding: 2rem 0; }
.a4c800 { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.a4c800 li a { display: inline-block; padding: .6rem 1.4rem; border-radius: var(--h45c9); border: 1px solid var(--peb42); color: var(--peb42); text-decoration: none; transition: all .2s ease; font-weight: 500; }
.a4c800 li a:hover { background: var(--peb42); color: var(--a3705); }

/* === Per-domain layout === */
:root { --max-w: 1280px; }
:root { --radius: 2px; --radius-lg: 4px; --radius-sm: 1px; }
.section { padding: clamp(64px, 9vw, 100px) 0; }
.info-grid, .bonus-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.btn-gold { animation: none; box-shadow: none; background: var(--gold); }
.btn-gold:hover { box-shadow: 0 4px 16px rgba(0,0,0,.3); }
.info-card:hover, .bonus-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,.2); }
body { line-height: 1.8; }
body { font-size: 16px; }
.image-text { grid-template-columns: 1fr; text-align: center; }
.image-text-reverse { direction: ltr; }
.info-card:hover { transform: scale(1.03); }

/* Promo Banner (SVG image banners) */
.promo-banner-wrap { margin: 1.5rem auto; text-align: center; max-width: 100%; display: flex; justify-content: center; }
.promo-banner-link { display: block; max-width: 800px; margin: 0 auto; width: 100%; transition: transform .2s ease, box-shadow .2s ease; border-radius: 12px; overflow: hidden; }
.promo-banner-link:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.promo-banner-img { width: 100%; height: auto; display: block; }
/* Card icon (replaces emoji in info-grid) */
.card-icon { display: inline-block; vertical-align: middle; }
.info-icon .card-icon { width: 32px; height: 32px; }
