:root {
    --primary: #4f46e5;
    --primary-deep: #6366f1;
    --accent: #10b981;
    --accent-warn: #f43f5e;
    --gray: #6b7280;
    --bg: #fafafa;
    --bg-soft: #f4f4f5;
    --ink: #18181b;
    --ink-soft: #52525b;
    --line: #d4d4d8;
    --white: #ffffff;
    --grad-primary: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #8b5cf6 100%);
    --grad-accent: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    --shadow-sm: 0 2px 8px rgba(79, 70, 229, .08);
    --shadow-md: 0 4px 16px rgba(79, 70, 229, .12);
    --shadow-lg: 0 8px 32px rgba(79, 70, 229, .15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    color: var(--ink);
    background: var(--bg);
    font-size: 17px;
}

.ad-strip {
    background: var(--grad-primary);
    color: #fff;
    text-align: center;
    padding: 13px 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.topbar {
    background: rgba(255,255,255,.98);
    border-bottom: 3px solid var(--primary);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(79,70,229,.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
}

.topbar-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -.5px;
}

.brand-sub {
    font-size: 9px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-style: italic;
}

.wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 56px 32px;
}

.card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--line);
    overflow: hidden;
}

.card-head {
    padding: 52px 58px 36px;
    background: linear-gradient(180deg, #fafafa 0%, #f4f4f5 100%);
    border-bottom: 3px solid var(--line);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.14;
    margin-bottom: 24px;
}

.card-meta {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    color: var(--gray);
    font-size: 14px;
    padding-top: 18px;
    border-top: 2px solid var(--line);
}

.meta-item { display: flex; align-items: center; gap: 8px; }

.promo-tag {
    background: var(--grad-accent);
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}

.card-body { padding: 52px 58px; }

.visual {
    margin: 46px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--grad-primary);
    color: #fff;
    padding: 54px 40px;
    text-align: center;
}

.visual .glyph { font-size: 52px; display: block; margin-bottom: 14px; }
.visual .visual-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.visual .visual-sub { font-size: 14px; opacity: .85; }

.visual.alt { background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #334155 100%); }
.visual.soft { background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%); color: var(--ink); }
.visual.soft .glyph { filter: none; }

.caption { font-size: 13px; color: var(--gray); font-style: italic; text-align: center; margin-top: 14px; padding: 0 20px; }

.h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--primary);
    margin: 60px 0 28px;
    line-height: 1.2;
    position: relative;
    padding-left: 32px;
}
.h2::before {
    content: '';
    position: absolute; left: 0; top: 5px; bottom: 5px; width: 6px;
    background: var(--grad-accent); border-radius: 4px;
}

.h3 {
    font-size: 27px;
    font-weight: 800;
    color: var(--primary-deep);
    margin: 42px 0 20px;
    font-family: 'Playfair Display', serif;
}

.text { margin-bottom: 22px; font-size: 18px; line-height: 1.85; }

.stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
    margin: 46px 0;
}

.stat {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border: 3px solid var(--primary);
    border-radius: 22px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat:nth-child(2) { border-color: var(--accent); }
.stat:nth-child(3) { border-color: var(--accent-warn); }
.stat .glyph { font-size: 46px; margin-bottom: 16px; }
.stat .num { font-family: 'Playfair Display', serif; font-size: 54px; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.stat .lbl { font-size: 16px; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px; }
.stat:nth-child(3) .lbl { color: var(--accent-warn); }
.stat .desc { font-size: 13px; color: var(--ink-soft); font-weight: 600; margin-top: auto; }

.panel {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
    border-left: 6px solid var(--primary);
    padding: 42px;
    margin: 54px 0;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
}
.panel .h3 { margin-top: 0; }

.testi-box {
    background: #fff;
    border: 2px solid var(--line);
    border-radius: 16px;
    padding: 40px;
    margin: 50px 0;
    box-shadow: var(--shadow-md);
    position: relative;
}
.testi-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--grad-accent); }

.fict-note {
    background: linear-gradient(135deg, #fef3e6 0%, #fde8d6 100%);
    border: 3px solid #e9c9a3;
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 26px;
}
.fict-note p { color: #5a3410; font-size: 14px; font-weight: 800; margin: 0; }

.testi-top { display: flex; align-items: center; gap: 22px; margin-bottom: 24px; }
.testi-initials {
    width: 88px; height: 88px; border-radius: 50%;
    background: var(--grad-primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 800;
    flex-shrink: 0; border: 4px solid #fff; box-shadow: var(--shadow-md);
}
.testi-name { font-size: 25px; font-weight: 900; color: var(--primary); margin-bottom: 8px; font-family: 'Playfair Display', serif; }
.testi-loc { color: var(--gray); font-size: 14px; }
.testi-body p { margin-bottom: 18px; font-size: 17px; line-height: 1.85; }
.testi-disclaimer { font-size: 13px; color: var(--ink-soft); font-style: italic; margin-top: 22px; padding-top: 22px; border-top: 3px solid var(--line); }

.quote {
    background: var(--grad-primary);
    color: #fff;
    padding: 54px;
    margin: 54px 0;
    border-radius: 20px;
    position: relative;
    box-shadow: var(--shadow-md);
}
.quote-text { font-size: 21px; font-style: italic; line-height: 1.7; }
.quote-attr { margin-top: 20px; font-size: 15px; opacity: .95; font-weight: 600; }

.list-block {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 40px;
    border-radius: 16px;
    margin: 46px 0;
    border: 2px solid var(--line);
}
.list-block ul { list-style: none; display: grid; gap: 18px; }
.list-block li {
    padding: 22px; background: #fff; border-radius: 12px; font-size: 16px;
    position: relative; padding-left: 66px; box-shadow: var(--shadow-sm);
}
.list-block li::before {
    content: "✓"; position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; background: var(--grad-primary); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: bold; font-size: 20px;
}

.cta-panel {
    background: var(--grad-primary);
    color: #fff;
    padding: 70px 54px;
    border-radius: 26px;
    text-align: center;
    margin: 76px 0;
    box-shadow: var(--shadow-lg);
}
.cta-panel .h2 { color: #fff; margin-top: 0; padding-left: 0; }
.cta-panel .h2::before { display: none; }
.cta-panel .text { color: rgba(255,255,255,.95); }
.cta-btn {
    display: inline-block; background: var(--grad-accent); color: #fff;
    padding: 24px 56px; text-decoration: none; border-radius: 50px;
    font-size: 20px; font-weight: 900; margin-top: 36px;
    box-shadow: 0 8px 32px rgba(16,185,129,.4);
    letter-spacing: .5px; border: 3px solid rgba(255,255,255,.25);
    transition: transform .3s ease;
}
.cta-btn:hover { transform: translateY(-4px); color: #fff; text-decoration: none; }
.cta-checks { font-size: 16px; margin-top: 34px; opacity: .96; line-height: 1.9; }
.aff-note { font-size: 13px; margin-bottom: 20px; opacity: .95; font-weight: 800; }

.warn-panel {
    background: linear-gradient(135deg, #fef3e6 0%, #fde8d6 100%);
    border: 3px solid #e9c9a3;
    padding: 36px;
    border-radius: 14px;
    margin: 50px 0;
}
.warn-panel h4 { color: #744210; margin-bottom: 18px; font-size: 20px; font-family: 'Playfair Display', serif; }
.warn-panel p { color: #5a3410; font-size: 15px; margin-bottom: 14px; }

a { color: var(--primary-deep); text-decoration: none; }
a:hover { color: var(--primary); text-decoration: underline; }

.info-block p { margin-bottom: 10px; }
.back-link { display: inline-block; margin-top: 30px; font-weight: 700; }

footer.site-foot {
    background: var(--grad-primary);
    color: #e8eff5;
    padding: 70px 32px 36px;
    margin-top: 90px;
}
.foot-inner { max-width: 1180px; margin: 0 auto; }
.foot-nav { display: flex; justify-content: center; gap: 36px; margin-bottom: 44px; flex-wrap: wrap; }
.foot-nav a { color: #e8f0ec; font-size: 15px; font-weight: 500; }
.foot-nav a:hover { color: #fff; }
.foot-legal {
    font-size: 14px; line-height: 1.95; color: #d0dae0;
    max-width: 1080px; margin: 0 auto; padding-top: 44px;
    border-top: 1px solid rgba(255,255,255,.18);
}
.foot-legal h4 { color: #f0f4f8; font-size: 17px; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.foot-legal p { margin-bottom: 18px; }
.foot-legal strong { color: #f0f4f8; }
.foot-info { margin-top: 44px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.18); text-align: center; font-size: 13px; }

ul { margin-left: 24px; margin-bottom: 20px; }
li { margin-bottom: 10px; font-size: 17px; }

.cookie-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--grad-primary); color: #fff;
    padding: 30px; box-shadow: 0 -10px 40px rgba(79,70,229,.4);
    z-index: 2000; display: none; border-top: 3px solid rgba(255,255,255,.15);
}
.cookie-bar.show { display: block; }
.cookie-inner { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 26px; }
.cookie-msg { flex: 1; min-width: 320px; font-size: 14px; }
.cookie-msg a { color: #e2e8f0; text-decoration: underline; font-weight: 600; }
.cookie-actions { display: flex; gap: 14px; }
.cookie-actions button { padding: 15px 30px; border: none; border-radius: 10px; cursor: pointer; font-weight: 700; font-size: 14px; }
.btn-accept { background: var(--grad-accent); color: #fff; }
.btn-decline { background: rgba(255,255,255,.2); color: #fff; }

@media (max-width: 768px) {
    .card-title { font-size: 30px; }
    .card-head, .card-body { padding: 32px 24px; }
    .h2 { font-size: 26px; }
    .stat-row { grid-template-columns: 1fr; }
    .testi-top { flex-direction: column; text-align: center; }
    .cta-btn { padding: 18px 36px; font-size: 17px; }
    .cookie-inner { flex-direction: column; text-align: center; }
}
