:root {
    --bg: #f5f3ee;
    --surface: #ffffff;
    --surface-soft: #fbfaf7;
    --text: #111111;
    --muted: #666666;
    --line: #e7e2d8;
    --dark: #111111;
    --accent: #d7ed9b;
    --accent-deep: #6d8450;
    --hero-a: #2d2a22;
    --hero-b: #6f7e56;
    --hero-c: #a48f57;
    --shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
    --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(231, 226, 216, 0.9);
}
.nav-wrap {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 18px;
    align-items: center;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #eef2e4 100%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    font-weight: 700;
}
.brand strong { display: block; font-size: 1.05rem; }
.brand small { display: block; color: var(--muted); font-size: 0.78rem; }
.site-nav {
    justify-self: center;
    background: #f2efe9;
    border: 1px solid #ebe5d9;
    padding: 6px;
    border-radius: 999px;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.site-nav a {
    padding: 10px 16px;
    border-radius: 999px;
    color: #555;
    font-size: 0.95rem;
}
.site-nav a.active,
.site-nav a:hover { background: #111; color: #fff; }
.nav-actions { display: flex; gap: 10px; }
.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: #fff;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 1.2rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.25s ease;
}
.btn-dark {
    background: #111;
    color: #fff;
}
.btn-dark:hover { background: #2a2a2a; }
.btn-light {
    background: #fff;
    color: #111;
    border: 1px solid var(--line);
}
.btn-light:hover { background: #f7f5f0; }
.section { padding: 34px 0; }
.page-hero,
.hero-card,
.card,
.feature-card,
.blog-card,
.cta-band,
.contact-card,
.price-card,
.stat-card,
.info-strip,
.post-layout article,
.post-sidebar,
.content-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.page-hero,
.content-card,
.contact-card,
.post-layout article,
.post-sidebar,
.price-card,
.feature-card,
.blog-card,
.card { padding: 34px; }
.eyebrow {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: var(--muted);
    margin-bottom: 12px;
}
h1, h2, h3, h4 { line-height: 1.08; margin: 0 0 14px; font-weight: 600; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 2rem); }
p { margin: 0 0 14px; color: #3d3d3d; }
.grid-2,
.grid-3,
.grid-4,
.grid-hero,
.grid-layout,
.feature-grid,
.blog-grid,
.price-grid,
.footer-grid,
.contact-grid,
.stats-grid,
.icon-grid { display: grid; gap: 24px; }
.grid-hero { grid-template-columns: 1.45fr 1fr; }
.grid-layout { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.feature-grid { grid-template-columns: repeat(2, 1fr); }
.blog-grid { grid-template-columns: 1fr 1.25fr; }
.price-grid { grid-template-columns: repeat(3, 1fr); }
.contact-grid { grid-template-columns: 1.15fr 0.85fr; }
.stats-grid { grid-template-columns: repeat(4, 1fr); }
.icon-grid { grid-template-columns: repeat(3, 1fr); }
.hero-panel {
    min-height: 620px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.16), transparent 34%), linear-gradient(135deg, var(--hero-c) 0%, var(--hero-a) 42%, var(--hero-b) 100%);
    color: #fff;
    padding: 34px;
}
.hero-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17,17,17,0.05), rgba(17,17,17,0.28));
}
.hero-panel > * { position: relative; z-index: 1; }
.hero-top,
.hero-actions,
.meta-row,
.inline-list,
.price-head,
.contact-list li,
.post-meta,
.blog-meta,
.metric-row { display: flex; align-items: center; gap: 12px; }
.hero-top { justify-content: space-between; }
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.82rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.12);
}
.muted-badge {
    background: #f3f0e9;
    border: 1px solid var(--line);
    color: #555;
}
.hero-copy { max-width: 720px; margin-top: 120px; }
.hero-copy p { color: rgba(255,255,255,0.86); max-width: 560px; font-size: 1.08rem; }
.hero-actions { margin-top: 30px; flex-wrap: wrap; }
.hero-stats { margin-top: 52px; }
.stat-card {
    padding: 22px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    box-shadow: none;
}
.stat-card strong { display: block; font-size: 1.8rem; }
.side-stack { display: grid; gap: 24px; }
.soft-panel {
    border-radius: var(--radius);
    background: linear-gradient(135deg, #f4efe3 0%, #fbfbf9 68%, #dbe8c8 100%);
    padding: 24px;
}
.coach-box {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    margin-top: 24px;
}
.visual-box,
.mini-card,
.img-placeholder,
.illustration-box {
    border-radius: 24px;
    overflow: hidden;
}
.visual-box {
    background: linear-gradient(135deg, #b9cb96 0%, #53633f 100%);
    min-height: 220px;
    position: relative;
}
.visual-box::before,
.illustration-box::before,
.mock-browser::before {
    content: "";
    position: absolute;
    inset: 0;
}
.visual-box::before {
    background: radial-gradient(circle at 30% 22%, rgba(255,255,255,0.45), transparent 26%), radial-gradient(circle at 70% 68%, rgba(255,255,255,0.2), transparent 22%), linear-gradient(180deg, rgba(255,255,255,0.08), rgba(17,17,17,0.15));
}
.progress-bars { display: grid; grid-template-columns: repeat(10, 1fr); gap: 6px; margin-top: 16px; }
.progress-bars span {
    height: 44px;
    border-radius: 999px;
    background: rgba(17,17,17,0.15);
}
.progress-bars span.active { background: #111; }
.info-strip { padding: 24px; }
.inline-list { flex-wrap: wrap; }
.inline-list span {
    border: 1px solid var(--line);
    background: var(--surface-soft);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.92rem;
    color: #555;
}
.feature-card,
.blog-card,
.price-card {
    transition: 0.25s ease;
}
.feature-card:hover,
.blog-card:hover,
.price-card:hover {
    transform: translateY(-4px);
}
.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    background: #f1eee7;
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.list-checks,
.footer-grid ul,
.contact-list,
.post-sidebar ul { list-style: none; margin: 0; padding: 0; }
.list-checks li,
.contact-list li,
.post-sidebar li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: #444;
}
.list-checks li::before,
.post-sidebar li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #111;
    font-size: 0.85rem;
    font-weight: 700;
}
.price-card.featured {
    border-color: #111;
}
.price-tag {
    position: absolute;
    top: 22px;
    right: 22px;
    background: #111;
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
}
.price-amount {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}
.price-card { position: relative; }
.blog-card h3 { font-size: 1.45rem; }
.blog-card .btn { margin-top: 12px; }
.blog-list { display: grid; gap: 16px; }
.blog-list .blog-card { padding: 24px; }
.cta-band {
    background: linear-gradient(135deg, #222018 0%, #2b2a24 38%, #708355 100%);
    color: #fff;
    padding: 44px;
    overflow: hidden;
}
.cta-band p { color: rgba(255,255,255,0.8); }
.newsletter-form,
.contact-form {
    display: grid;
    gap: 14px;
}
input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 20px;
    padding: 15px 18px;
    font: inherit;
    color: #111;
}
textarea { min-height: 170px; resize: vertical; }
.footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    padding: 54px 0 28px;
}
.site-footer {
    margin-top: 42px;
    border-top: 1px solid var(--line);
    background: #fff;
}
.footer-copy,
.footer-grid li,
.footer-bottom p { color: #555; }
.footer-grid h4 { margin-bottom: 14px; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 18px 0 34px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.logo-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.logo-strip span {
    border: 1px solid var(--line);
    background: var(--surface-soft);
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #5f5f5f;
    font-weight: 600;
}
.article-grid,
.post-layout { display: grid; gap: 24px; }
.article-grid { grid-template-columns: repeat(2, 1fr); }
.post-layout { grid-template-columns: 1.4fr 0.7fr; align-items: start; }
.post-layout article p { font-size: 1.04rem; line-height: 1.9; }
.post-meta,
.blog-meta { flex-wrap: wrap; color: #666; font-size: 0.92rem; }
.mini-cta {
    margin-top: 24px;
    padding: 22px;
    border: 1px solid var(--line);
    background: var(--surface-soft);
    border-radius: 22px;
}
.policy-content h2 { font-size: 2rem; margin-top: 26px; }
.policy-content ul { padding-left: 20px; }
.mock-browser,
.illustration-box {
    min-height: 320px;
    background: linear-gradient(135deg, #a9bf86 0%, #4e6041 100%);
    position: relative;
}
.mock-browser::before {
    background: radial-gradient(circle at 20% 18%, rgba(255,255,255,0.4), transparent 28%), radial-gradient(circle at 70% 60%, rgba(255,255,255,0.18), transparent 25%), linear-gradient(180deg, rgba(255,255,255,0.06), rgba(17,17,17,0.22));
}
.mock-browser .floating-ui {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,0.88);
    border-radius: 18px;
    padding: 16px;
}
.mock-browser .floating-card {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 210px;
    background: rgba(255,255,255,0.92);
    border-radius: 20px;
    padding: 16px;
}
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 18px; }
.stats-row div,
.metric-box {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 18px;
    padding: 16px;
}
.metric-box strong { display: block; font-size: 1.7rem; }
.quote-box {
    background: #111;
    color: #fff;
    padding: 20px;
    border-radius: 24px;
}
.quote-box p { color: rgba(255,255,255,0.9); }
.center { text-align: center; }
@media (max-width: 1100px) {
    .grid-hero,
    .blog-grid,
    .contact-grid,
    .post-layout,
    .footer-grid,
    .grid-layout { grid-template-columns: 1fr; }
    .price-grid,
    .stats-grid,
    .logo-strip,
    .grid-4,
    .grid-3,
    .article-grid,
    .icon-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
    .nav-wrap { grid-template-columns: auto auto; }
    .site-nav,
    .nav-actions {
        display: none;
        grid-column: 1 / -1;
        justify-self: stretch;
    }
    .site-nav.is-open,
    .nav-actions.is-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        border-radius: 24px;
        padding: 14px;
        border: 1px solid var(--line);
    }
    .menu-toggle { display: inline-flex; align-items: center; justify-content: center; justify-self: end; }
    .site-nav a,
    .nav-actions .btn { width: 100%; }
    .feature-grid,
    .price-grid,
    .stats-grid,
    .logo-strip,
    .grid-4,
    .grid-3,
    .article-grid,
    .icon-grid,
    .stats-row,
    .coach-box { grid-template-columns: 1fr; }
    .hero-copy { margin-top: 70px; }
    .hero-panel { min-height: auto; }
}
@media (max-width: 640px) {
    .page-hero,
    .content-card,
    .contact-card,
    .post-layout article,
    .post-sidebar,
    .price-card,
    .feature-card,
    .blog-card,
    .card,
    .cta-band,
    .hero-panel { padding: 22px; border-radius: 22px; }
    .container { width: min(100% - 20px, 1180px); }
    .btn { width: 100%; }
    .footer-bottom { flex-direction: column; }
}
