@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;700;800&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

:root {
    --bg: #f6f8f6;
    --ink: #11201b;
    --muted: #43554d;
    --line: #d9e1dc;
    --panel: #ffffff;
    --surface: #edf3ef;
    --brand: #0f766e;
    --brand-dark: #0b544f;
    --accent: #f59e0b;
    --accent-soft: #ffefcf;
    --radius: 18px;
    --wrap: 1160px;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'IBM Plex Sans', Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(1200px 420px at 8% -10%, #e0efe5, transparent 70%),
        radial-gradient(900px 340px at 95% -10%, #fff0d8, transparent 72%),
        var(--bg);
    line-height: 1.6;
}

a {
    color: var(--brand-dark);
}

.wrap {
    width: min(var(--wrap), calc(100% - 32px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 12px;
    top: 12px;
    background: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    z-index: 1000;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(246, 248, 246, 0.94);
    border-bottom: 1px solid rgba(17, 32, 27, 0.08);
    backdrop-filter: blur(8px);
}

.header-row {
    min-height: 76px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
    font-family: 'Manrope', Arial, sans-serif;
    font-weight: 800;
}

.brand img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
}

.brand span {
    display: block;
    font-size: 0.98rem;
}

.brand small {
    display: block;
    font-family: 'IBM Plex Sans', Arial, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    color: var(--muted);
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.site-nav a {
    text-decoration: none;
    color: var(--muted);
    border-radius: 999px;
    padding: 9px 12px;
    font-size: 0.9rem;
    font-weight: 500;
}

.site-nav a:hover,
.site-nav a.is-active {
    background: #e4ece8;
    color: var(--ink);
}

.top-cta {
    display: flex;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 10px 16px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), #16a394);
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0d6b64, #138a7d);
}

.btn-ghost {
    border-color: #c2cec8;
    background: #fff;
    color: var(--ink);
}

.hero {
    padding: 48px 0 22px;
}

.hero-shell {
    background:
        linear-gradient(140deg, #0f766e 0%, #12786f 42%, #155347 100%),
        var(--brand);
    color: #e9fff8;
    border-radius: 26px;
    padding: clamp(24px, 4vw, 46px);
    position: relative;
    overflow: hidden;
}

.hero-shell::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    right: -90px;
    top: -130px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.35), transparent 68%);
}

.hero-kicker {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.76rem;
    color: #cff7f2;
}

.hero h1 {
    margin: 0;
    font-family: 'Manrope', Arial, sans-serif;
    font-size: clamp(1.85rem, 4vw, 3rem);
    line-height: 1.12;
}

.hero p {
    max-width: 760px;
    font-size: 1.06rem;
    margin: 16px 0 0;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions .btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.pill-row {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill-row span {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 0.84rem;
}

.section {
    padding: 36px 0;
}

.section h2 {
    margin: 0 0 14px;
    font-family: 'Manrope', Arial, sans-serif;
    font-size: clamp(1.35rem, 3vw, 2.05rem);
    line-height: 1.2;
}

.section-intro {
    color: var(--muted);
    max-width: 820px;
    margin-top: 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 4px 14px rgba(8, 15, 11, 0.03);
}

.card h3 {
    margin: 0 0 8px;
    font-size: 1.02rem;
    font-family: 'Manrope', Arial, sans-serif;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.list-clean {
    margin: 0;
    padding-left: 18px;
}

.list-clean li {
    margin: 8px 0;
}

.answer-blocks {
    display: grid;
    gap: 14px;
}

.answer-blocks article {
    background: #fff;
    border: 1px solid var(--line);
    border-left: 4px solid var(--accent);
    border-radius: 14px;
    padding: 16px 18px;
}

.answer-blocks h2,
.answer-blocks h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-family: 'Manrope', Arial, sans-serif;
}

.answer-blocks p {
    margin: 0;
    color: #2f4139;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
}

.faq-item h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.faq-item p {
    margin: 0;
    color: var(--muted);
}

.breadcrumbs {
    margin-top: 10px;
    font-size: 0.86rem;
    color: var(--muted);
}

.breadcrumbs a {
    color: var(--brand-dark);
}

.related-links {
    background: var(--surface);
    border: 1px solid #d7e4dc;
    border-radius: 16px;
    padding: 16px 18px;
}

.related-links h2,
.related-links h3 {
    margin: 0 0 10px;
    font-size: 1.06rem;
}

.related-links p {
    margin: 0 0 7px;
}

.site-cta {
    padding: 30px 0 36px;
}

.cta-panel {
    background: linear-gradient(130deg, #fff9ea 0%, #ffeec8 42%, #f6dec2 100%);
    border: 1px solid #edd2ad;
    border-radius: 22px;
    padding: 26px;
}

.cta-panel h2 {
    margin: 0 0 8px;
}

.cta-panel p {
    margin: 0;
    color: #624b2e;
}

.cta-buttons {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer {
    border-top: 1px solid #d7e0da;
    background: #eef4f0;
    padding: 30px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.site-footer h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.site-footer p {
    margin: 0 0 8px;
    color: #31433c;
}

.site-footer a {
    color: #173a33;
}

@media (max-width: 980px) {
    .header-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px 0;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .top-cta {
        justify-content: flex-start;
    }

    .grid-2,
    .grid-3,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
