:root {
    --green: #157138;
    --green-2: #1e8d49;
    --green-dark: #06371f;
    --green-soft: #e9f5ee;
    --ink: #101414;
    --ink-2: #1f2422;
    --muted: #65706b;
    --line: rgba(16, 20, 20, .12);
    --line-dark: rgba(255, 255, 255, .11);
    --bg: #f7f8f6;
    --white: #fff;
    --radius-lg: 30px;
    --radius: 22px;
    --radius-sm: 14px;
    --shadow: 0 24px 70px rgba(8, 31, 19, .12);
    --shadow-soft: 0 18px 50px rgba(8, 31, 19, .08);
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 99; padding: 12px 16px; background: var(--green); color: white; border-radius: 999px; }
.skip-link:focus { top: 16px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(9, 13, 14, .83);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line-dark);
}
.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand img { width: 172px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; color: rgba(255,255,255,.84); font-size: 14px; font-weight: 650; }
.site-nav a:not(.nav-cta) { transition: color .2s ease; }
.site-nav a:not(.nav-cta):hover { color: white; }
.nav-cta {
    padding: 12px 19px;
    background: linear-gradient(135deg, var(--green), var(--green-2));
    color: white;
    border-radius: 999px;
    box-shadow: 0 14px 40px rgba(21, 113, 56, .24);
}
.nav-toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; border-radius: 12px; color: white; }
.nav-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 5px auto; background: currentColor; border-radius: 2px; }

.hero {
    position: relative;
    margin-top: -72px;
    padding: 148px 0 76px;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 50%, rgba(21, 113, 56, .16), transparent 34%),
        linear-gradient(135deg, #06090a 0%, #0d1414 54%, #07120d 100%);
    color: white;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(38, 176, 87, .42) 1px, transparent 1.8px);
    background-size: 22px 22px;
    mask-image: radial-gradient(circle at 68% 58%, #000 0 18%, transparent 42%);
    opacity: .45;
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(320px, .97fr);
    gap: 54px;
    align-items: center;
}
.section-label {
    margin: 0 0 14px;
    color: var(--green-2);
    letter-spacing: .13em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 850;
}
.hero h1 {
    margin: 0;
    letter-spacing: -.062em;
    line-height: .97;
    font-size: clamp(42px, 6vw, 76px);
    max-width: 740px;
}
.hero h1 span {
    color: var(--green-2);
    text-shadow: 0 20px 80px rgba(21, 113, 56, .34);
}
.hero p {
    margin: 24px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 18px;
    max-width: 650px;
}
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--green), var(--green-2)); box-shadow: 0 18px 52px rgba(21,113,56,.25); }
.btn-ghost { color: white; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.03); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-outline { color: var(--green); border-color: rgba(21, 113, 56, .32); background: white; }
.btn-outline:hover { box-shadow: var(--shadow-soft); }
.btn-light { color: var(--green-dark); background: white; }
.hero-visual {
    min-height: 480px;
    border-radius: 36px;
    border: 1px solid rgba(47, 191, 97, .28);
    background: rgba(255,255,255,.02);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 40px 90px rgba(0,0,0,.22);
    overflow: hidden;
}
.hero-visual img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; opacity: .94; }

.service-strip { margin-top: -34px; position: relative; z-index: 5; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
    min-height: 186px;
    padding: 28px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(16,20,20,.1);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 20px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(21,113,56,.32); box-shadow: var(--shadow); }
.service-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef6f1, #dfece5);
    color: var(--green);
    flex-shrink: 0;
}
.service-icon svg, .process-icon svg, .value-item svg, .footer-contact svg, .contact-panel svg { width: 28px; height: 28px; }
.service-card-content { display: flex; flex-direction: column; gap: 8px; }
.service-card strong { font-size: 22px; letter-spacing: -.02em; }
.service-card span span { color: var(--ink-2); font-size: 14px; }
.service-card em { color: var(--green); font-style: normal; font-weight: 850; margin-top: auto; }

.process-section {
    padding: 84px 0 74px;
    background: linear-gradient(180deg, #eef4f0, #f8faf8);
    border-top: 1px solid rgba(16,20,20,.05);
    border-bottom: 1px solid rgba(16,20,20,.07);
}
.process-grid { display: grid; grid-template-columns: 280px 1fr; gap: 70px; align-items: start; }
.process-intro h2, .about-copy h2, .insights-preview h2, .contact-copy h2 { margin: 0; font-size: clamp(32px, 4vw, 46px); line-height: 1.02; letter-spacing: -.045em; }
.process-intro p, .about-copy p, .contact-copy p { color: var(--muted); margin: 18px 0 0; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-steps::before { content: ""; position: absolute; top: 32px; left: 10%; right: 10%; border-top: 1px dashed rgba(21,113,56,.28); }
.process-step { position: relative; z-index: 1; text-align: center; }
.process-icon {
    width: 66px;
    height: 66px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    background: white;
    border: 1px solid rgba(21,113,56,.18);
    border-radius: 999px;
    box-shadow: 0 16px 34px rgba(8,31,19,.08);
}
.process-step strong { display: block; margin-top: 18px; color: var(--green); font-size: 16px; }
.process-step p { margin: 7px 0 0; color: var(--muted); font-size: 14px; }

.values-section { padding: 36px 0; }
.values-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: white;
    border: 1px solid rgba(16,20,20,.1);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}
.value-item { display: grid; grid-template-columns: 54px 1fr; gap: 16px; padding: 26px; border-right: 1px solid var(--line); }
.value-item:last-child { border-right: 0; }
.value-item span:first-child { width: 54px; height: 54px; border-radius: 15px; background: linear-gradient(135deg, var(--green), var(--green-2)); color: white; display: flex; align-items: center; justify-content: center; }
.value-item strong { display: block; font-size: 16px; }
.value-item p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }

.about-insights-section { padding: 58px 0 54px; }
.about-insights-grid { display: grid; grid-template-columns: .82fr 1.2fr .86fr; gap: 34px; align-items: start; }
.about-copy .btn { margin-top: 26px; }
.team-preview { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.team-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.team-card img { width: 100%; aspect-ratio: 1 / 1.08; object-fit: cover; background: #edf2ef; }
.team-card div { padding: 20px; }
.team-card h3 { margin: 0 0 3px; font-size: 21px; letter-spacing: -.02em; }
.role { color: var(--green); font-weight: 800; margin: 0 0 10px; }
.team-card p:not(.role) { color: var(--muted); font-size: 14px; margin: 0; }
.insights-preview {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-soft);
}
.insights-preview h2 { font-size: 32px; margin-bottom: 18px; }
.insight-row { display: grid; grid-template-columns: 92px 1fr; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); }
.insight-row:first-of-type { border-top: 0; padding-top: 0; }
.insight-row img { width: 92px; height: 72px; object-fit: cover; border-radius: 14px; }
.insight-row strong { display: block; line-height: 1.2; }
.insight-row em { color: var(--green); font-size: 13px; font-style: normal; font-weight: 850; }

.cta-section { padding: 10px 0 44px; }
.cta-card {
    display: grid;
    grid-template-columns: 78px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 26px 30px;
    border-radius: var(--radius);
    color: white;
    background:
        radial-gradient(circle at 18% 12%, rgba(255,255,255,.14), transparent 24%),
        linear-gradient(135deg, #07351f, #052314 65%, #0a1712);
    box-shadow: 0 28px 70px rgba(6, 55, 31, .22);
}
.cta-card img { width: 78px; height: auto; }
.cta-card h2 { margin: 0; line-height: 1.1; letter-spacing: -.025em; }
.cta-card p { margin: 6px 0 0; color: rgba(255,255,255,.74); }

.subhero {
    position: relative;
    margin-top: -72px;
    padding: 154px 0 74px;
    color: white;
    background:
        radial-gradient(circle at 74% 18%, rgba(21,113,56,.26), transparent 28%),
        linear-gradient(135deg, #070a0b, #111817 66%, #06130d);
    overflow: hidden;
}
.subhero::after {
    content: "";
    position: absolute;
    right: -9vw;
    bottom: -16vw;
    width: 42vw;
    min-width: 420px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(45, 178, 89, .24);
    box-shadow: inset 0 0 80px rgba(21,113,56,.12);
}
.subhero-grid { position: relative; z-index: 1; max-width: 850px; }
.subhero-grid.two-col { max-width: none; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.subhero h1 { margin: 0; font-size: clamp(42px, 5.5vw, 70px); line-height: .98; letter-spacing: -.058em; max-width: 780px; }
.subhero p { margin: 22px 0 0; color: rgba(255,255,255,.72); font-size: 18px; max-width: 700px; }
.subhero .btn { margin-top: 28px; }
.subhero-image { width: 100%; aspect-ratio: 1.35 / 1; object-fit: cover; border-radius: 30px; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.page-section { padding: 68px 0; }
.services-large-grid { display: grid; gap: 26px; }
.large-service-card {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 28px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.large-service-card img { height: 100%; min-height: 300px; object-fit: cover; }
.large-service-card > div { padding: 36px; }
.large-service-card h2 { margin: 18px 0 12px; font-size: 36px; letter-spacing: -.04em; }
.large-service-card p { color: var(--muted); max-width: 620px; }
.large-service-card .btn { margin-top: 18px; }

.narrow-content { max-width: 840px; }
.prose { font-size: 18px; color: #26302c; }
.prose h1, .prose h2, .prose h3 { color: var(--ink); line-height: 1.1; letter-spacing: -.035em; }
.prose h1 { font-size: 44px; }
.prose h2 { font-size: 34px; margin-top: 0; }
.prose h3 { font-size: 24px; margin-top: 34px; }
.prose p { color: #38433f; }
.prose ul { padding-left: 22px; }
.prose li { margin: 8px 0; }
.small-prose { font-size: 15px; }
.small-prose h2, .small-prose h3 { display: none; }
.team-full-grid { display: grid; gap: 28px; }
.team-full-card {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 34px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-soft);
}
.team-full-card img { width: 100%; aspect-ratio: .9 / 1; object-fit: cover; border-radius: 24px; background: #edf2ef; }
.team-full-copy { padding: 20px 12px 12px; }
.team-full-copy h2 { margin: 0; font-size: 42px; letter-spacing: -.04em; }
.contact-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.contact-pills a { padding: 10px 14px; border-radius: 999px; background: var(--green-soft); color: var(--green-dark); font-weight: 800; font-size: 14px; }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.article-card img { width: 100%; aspect-ratio: 1.42 / 1; object-fit: cover; }
.article-card div { padding: 24px; }
.article-meta { margin: 0 0 10px; color: var(--green); font-size: 12px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.article-card h2 { margin: 0 0 12px; font-size: 24px; line-height: 1.12; letter-spacing: -.03em; }
.article-card p:not(.article-meta) { color: var(--muted); }
.read-link { color: var(--green); font-weight: 850; }
.article-hero .article-meta { color: var(--green-2); }

.contact-panel {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius);
    padding: 30px;
    backdrop-filter: blur(12px);
}
.contact-panel h2 { margin: 0 0 18px; font-size: 26px; }
.contact-panel p { display: flex; align-items: center; gap: 12px; margin: 12px 0; font-size: 16px; color: rgba(255,255,255,.82); }
.contact-panel svg { color: var(--green-2); flex: 0 0 auto; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.contact-form {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-soft);
}
.contact-form label { display: block; color: var(--ink-2); font-weight: 800; margin-bottom: 16px; }
.contact-form input, .contact-form textarea {
    width: 100%;
    margin-top: 8px;
    border: 1px solid rgba(16,20,20,.14);
    border-radius: 16px;
    padding: 14px 15px;
    background: #fbfcfb;
    color: var(--ink);
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(21,113,56,.1); }
.honeypot { position: absolute !important; left: -9999px !important; }
.flash { padding: 14px 16px; border-radius: 16px; margin-top: 18px; font-weight: 750; }
.flash.success { background: #e8f6ed; color: #064a24; }
.flash.error { background: #fdecec; color: #7b1d1d; }

.site-footer {
    padding: 54px 0 24px;
    background:
        radial-gradient(circle at 80% 20%, rgba(21,113,56,.16), transparent 28%),
        linear-gradient(135deg, #070a0b, #111716 70%, #08100d);
    color: rgba(255,255,255,.72);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr 1fr .45fr; gap: 44px; }
.footer-brand img { width: 166px; height: auto; margin-bottom: 18px; }
.footer-brand p { max-width: 300px; }
.site-footer h2 { margin: 0 0 14px; color: rgba(255,255,255,.52); font-size: 12px; text-transform: uppercase; letter-spacing: .11em; }
.site-footer a { display: block; margin: 8px 0; color: rgba(255,255,255,.82); }
.site-footer a:hover { color: white; }
.footer-contact { display: flex; align-items: center; gap: 10px; margin: 9px 0; }
.footer-contact svg { width: 18px; height: 18px; color: var(--green-2); }
.footer-contact a { margin: 0; }
.social { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.22); border-radius: 12px; display: inline-flex !important; align-items: center; justify-content: center; font-weight: 900; }
.footer-bottom { border-top: 1px solid var(--line-dark); margin-top: 42px; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 13px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { display: inline; margin: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .btn:hover, .service-card:hover { transform: none; }
}

@media (max-width: 1080px) {
    .service-grid, .articles-grid { grid-template-columns: 1fr; }
    .process-grid, .about-insights-grid, .contact-grid, .subhero-grid.two-col, .large-service-card, .team-full-card { grid-template-columns: 1fr; }
    .process-steps, .values-card { grid-template-columns: repeat(2, 1fr); }
    .value-item:nth-child(2) { border-right: 0; }
    .about-insights-grid { gap: 24px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .container { width: min(100% - 28px, var(--container)); }
    .header-inner { min-height: 66px; }
    .brand img { width: 150px; }
    .nav-toggle { display: block; }
    .site-nav {
        position: fixed;
        left: 14px;
        right: 14px;
        top: 76px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        background: rgba(8, 13, 13, .97);
        border: 1px solid var(--line-dark);
        border-radius: 20px;
        box-shadow: 0 20px 70px rgba(0,0,0,.38);
    }
    .site-nav.open { display: flex; }
    .site-nav a { padding: 14px 16px; border-radius: 14px; }
    .nav-cta { text-align: center; margin-top: 8px; }
    .hero, .subhero { margin-top: -66px; padding-top: 124px; }
    .hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero-visual, .hero-visual img { min-height: 320px; }
    .service-strip { margin-top: 0; padding-top: 18px; }
    .service-card { grid-template-columns: 1fr; }
    .process-steps, .values-card, .team-preview { grid-template-columns: 1fr; }
    .process-steps::before { display: none; }
    .value-item { border-right: 0; border-bottom: 1px solid var(--line); }
    .value-item:last-child { border-bottom: 0; }
    .cta-card { grid-template-columns: 1fr; text-align: left; }
    .cta-card img { width: 120px; }
    .footer-grid { grid-template-columns: 1fr; gap: 26px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
    .hero h1, .subhero h1 { letter-spacing: -.045em; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; }
    .page-section { padding: 50px 0; }
    .process-section { padding: 58px 0; }
    .contact-form { padding: 20px; border-radius: 22px; }
    .team-full-card { padding: 16px; }
    .large-service-card > div { padding: 24px; }
}

/* Premium polish v1.2 */
body {
    background:
        radial-gradient(circle at 12% 4%, rgba(21,113,56,.08), transparent 28%),
        linear-gradient(180deg, #fbfcfb, #f2f5f1 62%, #f7f8f6);
}
.site-header {
    background: rgba(255,255,255,.86);
    border-bottom: 1px solid rgba(16,20,20,.08);
    box-shadow: 0 14px 44px rgba(8,31,19,.07);
}
.site-nav { color: #1f2b26; }
.site-nav a:not(.nav-cta):hover { color: var(--green); }
.nav-toggle { color: var(--ink); background: rgba(21,113,56,.08); }
.hero { margin-top: -72px; padding-top: 160px; }
.hero::after {
    content: "";
    position: absolute;
    inset: auto -18vw -24vw auto;
    width: 48vw;
    min-width: 520px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21,113,56,.18), transparent 66%);
}
.hero-visual {
    background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.015));
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}
.service-card, .values-card, .team-card, .insights-preview, .article-card, .large-service-card, .team-full-card, .contact-form {
    backdrop-filter: blur(10px);
}
.prose a { color: var(--green); font-weight: 800; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.prose blockquote { margin: 28px 0; padding: 22px 24px; border-left: 4px solid var(--green); background: #eef6f1; border-radius: 18px; }
.prose figure { margin: 30px 0; }
.prose figure img, .prose img { border-radius: 22px; box-shadow: var(--shadow-soft); }
.prose figcaption { margin-top: 8px; color: var(--muted); font-size: 14px; text-align: center; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 34px 0; }
@media (max-width: 820px) {
    .site-nav { background: rgba(255,255,255,.98); border-color: var(--line); color: var(--ink); }
    .nav-cta { color: white; }
    .hero { padding-top: 132px; }
}

/* ProFM v1.3 · logo and rich content refinements */
.brand img, .footer-brand img, .cta-card img { object-fit: contain; }
.brand img { width: 178px; height: auto; }
.footer-brand img { width: 176px; height: auto; }
.cta-card img { width: 92px; height: auto; }
.prose h4 { font-size: 21px; margin-top: 26px; letter-spacing: -.02em; }
.prose s { color: var(--muted); }
.prose mark { background: #e8f6ed; color: var(--green-dark); padding: .08em .22em; border-radius: .35em; }
.prose pre { background: #0d1512; color: #d8eadf; padding: 20px; border-radius: 18px; overflow-x: auto; font-size: 15px; }
.prose code { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.prose .button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green), var(--green-2));
    color: #fff;
    text-decoration: none;
    box-shadow: 0 16px 42px rgba(21,113,56,.20);
}
.prose .callout-box {
    margin: 30px 0;
    padding: 24px 26px;
    border-radius: 22px;
    background: linear-gradient(135deg, #eaf6ef, #f8fbf8);
    border: 1px solid rgba(21,113,56,.18);
    box-shadow: var(--shadow-soft);
}
.prose .callout-box strong { display: block; color: var(--green-dark); font-size: 19px; margin-bottom: 7px; }
.prose .callout-box p:last-child { margin-bottom: 0; }
.prose .table-scroll { overflow-x: auto; margin: 28px 0; border-radius: 20px; box-shadow: var(--shadow-soft); }
.prose table { width: 100%; border-collapse: collapse; background: white; min-width: 560px; }
.prose th, .prose td { padding: 14px 16px; border: 1px solid rgba(16,20,20,.10); text-align: left; vertical-align: top; }
.prose th { background: #eef6f1; color: var(--green-dark); font-weight: 900; }
.prose .checklist { list-style: none; padding-left: 0; }
.prose .checklist li { position: relative; padding-left: 32px; }
.prose .checklist li::before { content: ""; position: absolute; left: 0; top: .38em; width: 18px; height: 18px; border-radius: 6px; border: 2px solid var(--green); background: #fff; }
.prose figure.align-left { float: left; max-width: 44%; margin: 8px 28px 18px 0; }
.prose figure.align-right { float: right; max-width: 44%; margin: 8px 0 18px 28px; }
.prose figure.align-center, .prose figure.image-wide { text-align: center; }
.prose figure.image-small { max-width: 520px; margin-left: auto; margin-right: auto; }
.prose figure.image-full img { width: 100%; }
.prose::after { content: ""; display: block; clear: both; }
@media (max-width: 820px) {
    .brand img { width: 158px; }
    .prose figure.align-left, .prose figure.align-right { float: none; max-width: 100%; margin: 28px 0; }
}

/* ProFM v1.4 · Snöröjningskarta section and downloadable material */
.solution-section {
    position: relative;
    padding: 74px 0 64px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 22%, rgba(21,113,56,.12), transparent 28%),
        linear-gradient(180deg, #f8fbf8, #eef5f0);
    border-top: 1px solid rgba(16,20,20,.07);
    border-bottom: 1px solid rgba(16,20,20,.07);
}
.solution-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(21,113,56,.16) 1px, transparent 1.8px);
    background-size: 18px 18px;
    mask-image: radial-gradient(circle at 82% 32%, #000 0 14%, transparent 38%);
    pointer-events: none;
}
.solution-home-card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 34px;
    align-items: stretch;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(16,20,20,.10);
    border-radius: 34px;
    box-shadow: var(--shadow);
    padding: 26px;
    overflow: hidden;
}
.solution-copy { padding: clamp(18px, 3.6vw, 44px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.solution-copy h2,
.solution-benefits-section h2,
.audience-card h2 {
    margin: 0;
    font-size: clamp(36px, 5vw, 62px);
    line-height: .98;
    letter-spacing: -.058em;
}
.solution-lead { font-size: 22px; line-height: 1.22; color: var(--green-dark) !important; font-weight: 850; margin: 22px 0 0 !important; }
.solution-copy p:not(.section-label) { color: var(--muted); font-size: 17px; max-width: 600px; }
.solution-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.solution-visual {
    position: relative;
    min-height: 430px;
    border-radius: 28px;
    overflow: hidden;
    background: #0d1512;
    box-shadow: 0 24px 70px rgba(8,31,19,.18);
}
.solution-visual img { width: 100%; height: 100%; object-fit: cover; min-height: 430px; }
.download-mini-card {
    position: absolute;
    left: 22px;
    bottom: 22px;
    max-width: min(360px, calc(100% - 44px));
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 13px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 40px rgba(0,0,0,.16);
}
.download-mini-card span { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--green), var(--green-2)); color: white; grid-row: span 2; }
.download-mini-card svg { width: 25px; height: 25px; }
.download-mini-card strong { line-height: 1.15; }
.download-mini-card small { color: var(--muted); font-weight: 750; }
.solution-benefit-row { position: relative; z-index: 1; margin-top: 20px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.solution-benefit {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(16,20,20,.10);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow-soft);
}
.solution-benefit span { width: 54px; height: 54px; border-radius: 18px; display: flex; align-items: center; justify-content: center; background: var(--green-soft); color: var(--green); margin-bottom: 16px; }
.solution-benefit svg { width: 29px; height: 29px; }
.solution-benefit strong { display: block; font-size: 17px; line-height: 1.18; letter-spacing: -.01em; }
.solution-benefit p { margin: 9px 0 0; color: var(--muted); font-size: 14px; }
.solution-detail-hero .subhero-image { aspect-ratio: 1.35 / .86; }
.solution-detail-section { background: #fbfcfb; }
.solution-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 44px; align-items: start; }
.solution-download-panel {
    position: sticky;
    top: 96px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.solution-download-panel img { width: 100%; max-height: 470px; object-fit: cover; object-position: top center; border-bottom: 1px solid var(--line); }
.solution-download-panel > div { padding: 26px; }
.solution-download-panel h2 { margin: 0; line-height: 1.1; letter-spacing: -.035em; }
.solution-download-panel p:not(.section-label) { color: var(--muted); }
.solution-download-panel .btn { margin-top: 8px; width: 100%; }
.solution-benefits-section { padding: 64px 0; background: linear-gradient(180deg, #eef5f0, #f8fbf8); }
.solution-detail-benefits { margin-top: 26px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.audience-section { padding: 0 0 68px; background: #f8fbf8; }
.audience-card {
    display: grid;
    grid-template-columns: .65fr 1fr;
    gap: 24px;
    align-items: center;
    padding: 28px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}
.audience-card h2 { font-size: clamp(28px, 3vw, 42px); }
.audience-card div { display: flex; flex-wrap: wrap; gap: 12px; }
.audience-card span { padding: 12px 16px; border-radius: 999px; background: var(--green-soft); color: var(--green-dark); font-weight: 900; }
.site-nav a[href$="snorojningskarta"] { white-space: nowrap; }
@media (max-width: 1180px) {
    .solution-benefit-row,
    .solution-detail-benefits { grid-template-columns: repeat(2, 1fr); }
    .solution-home-card,
    .solution-detail-grid,
    .audience-card { grid-template-columns: 1fr; }
    .solution-download-panel { position: static; }
}
@media (max-width: 820px) {
    .solution-section { padding: 48px 0; }
    .solution-home-card { padding: 16px; border-radius: 26px; }
    .solution-copy { padding: 18px; }
    .solution-visual,
    .solution-visual img { min-height: 320px; }
}
@media (max-width: 560px) {
    .solution-actions { width: 100%; }
    .solution-benefit-row,
    .solution-detail-benefits { grid-template-columns: 1fr; }
    .download-mini-card { position: static; max-width: none; margin: 12px; }
}

.human-check {
    margin: 4px 0 18px;
    padding: 16px;
    border: 1px solid rgba(21,113,56,.18);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(21,113,56,.07), rgba(255,255,255,.92));
}
.human-check label { margin-bottom: 0; }
.human-check .captcha-question {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    margin: 0 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(21,113,56,.1);
    color: var(--green-dark);
    font-weight: 900;
}
.human-check p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 650;
}
