
:root {
  --wm-bg: #ffffff;
  --wm-surface: #ffffff;
  --wm-text: #152319;
  --wm-muted: #607065;
  --wm-line: #dcebdd;
  --wm-soft: #f5faf5;
  --wm-brand: #168a3a;
  --wm-brand-dark: #0b5f2a;
  --wm-brand-soft: #e8f7eb;
  --wm-accent: #f3a51c;
  --wm-radius: 20px;
  --wm-shadow: 0 16px 36px rgba(18, 48, 25, .08);
  --wm-shadow-soft: 0 8px 20px rgba(18, 48, 25, .05);
  --wm-container: 1180px;
}
* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--wm-bg);
  color: var(--wm-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--wm-brand); }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 32px), var(--wm-container)); margin-inline: auto; }
.section { padding: 44px 0; }
.section--soft { background: linear-gradient(180deg, #fff 0%, #eef8ec 100%); }
.center { text-align: center; }
.page-wrap { max-width: 920px; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 9999; background: #fff; border: 2px solid var(--wm-brand); border-radius: 12px; padding: 10px 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--wm-line);
}
.site-header.is-scrolled { box-shadow: 0 12px 28px rgba(18, 48, 25, .07); }
.header-grid {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { width: auto; height: 54px; max-width: min(360px, 74vw); }
.footer-brand img { width: auto; height: 54px; max-width: 360px; }
.nav-toggle {
  width: 46px; height: 46px; border: 1px solid var(--wm-line); border-radius: 14px; background: #fff;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--wm-text); border-radius: 999px; }
.main-nav {
  grid-column: 1 / -1;
  display: none;
  background: #fff;
  border: 1px solid var(--wm-line);
  border-radius: 18px;
  box-shadow: var(--wm-shadow-soft);
  padding: 14px;
}
.main-nav.is-open { display: block; }
.menu, .footer-menu-list { list-style: none; margin: 0; padding: 0; }
.menu { display: flex; flex-direction: column; gap: 10px; }
.menu a { display: block; color: #164622; font-weight: 800; font-size: .95rem; }
.header-actions { display: none; }

.eyebrow { margin: 0 0 10px; color: var(--wm-brand-dark); font-size: .78rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
h1, h2, h3 { margin: 0 0 12px; line-height: 1.1; letter-spacing: -.035em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.45rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.08rem, 2vw, 1.28rem); }
p { margin-top: 0; }
.lead, .section-head p, .card p, .price-card p, .step-card p, .side-card p, .hero-surface p, .footer-top p, .entry-meta, .entry-content p, .post-card__meta { color: var(--wm-muted); }
.section-head { margin-bottom: 18px; max-width: 960px; }
.section-head.center { margin-inline: auto; }
.section-head--row { display: flex; flex-direction: column; gap: 14px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; color: var(--wm-muted); font-size: .92rem; }
.breadcrumbs a { color: var(--wm-brand-dark); font-weight: 700; }

.hero--conversion {
  padding: 52px 0 64px;
  background: radial-gradient(circle at right top, rgba(22,138,58,.12), transparent 28%), linear-gradient(180deg, #fff 0%, #f7fbf7 100%);
}
.hero-grid, .split { display: grid; gap: 24px; }
.hero-copy h1 { max-width: 780px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 18px; }
.hero-tags, .meta-pills, .product-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-tags span, .meta-pills span, .case-card__tag, .price-card__tag, .hero-surface__badge {
  display: inline-flex; align-items: center; min-height: 30px; padding: 5px 10px; border-radius: 999px;
  background: var(--wm-brand-soft); border: 1px solid #bee5c5; color: var(--wm-brand-dark); font-size: .8rem; font-weight: 900;
}
.hero-surface, .card, .side-card, .price-card, .step-card, .form-box, .sponsor-cta, .info-panel, .product-panel {
  background: var(--wm-surface); border: 1px solid var(--wm-line); border-radius: var(--wm-radius); box-shadow: var(--wm-shadow-soft); padding: 22px;
}
.surface-list { display: grid; gap: 12px; margin-top: 16px; }
.surface-list div { padding: 15px; border: 1px solid var(--wm-line); border-radius: 18px; background: linear-gradient(180deg,#fff 0%,#f3fbf1 100%); }
.surface-list strong { display: block; font-size: 1.2rem; color: var(--wm-brand-dark); }
.surface-list span { color: var(--wm-muted); font-size: .93rem; }

.btn { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 18px; border-radius: 999px; border: 0; font-weight: 900; transition: .18s ease; }
.btn--primary { background: var(--wm-brand); color: #fff; box-shadow: 0 10px 22px rgba(22,138,58,.2); }
.btn--primary:hover { background: var(--wm-brand-dark); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: #fff; color: var(--wm-text); border: 1px solid var(--wm-line); }
.btn--compact { min-height: 42px; padding: 9px 15px; }
.btn--full { width: 100%; }
.text-link { color: var(--wm-brand-dark); font-weight: 900; }

.cards, .pricing-grid, .steps-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.card { height: 100%; }
.card a { display: block; height: 100%; }
.card-thumb { border-radius: 18px; overflow: hidden; margin-bottom: 14px; background: var(--wm-soft); }
.card-thumb img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.post-card, .case-card, .price-card { transition: transform .18s ease, box-shadow .18s ease; }
.post-card:hover, .case-card:hover, .price-card:hover { transform: translateY(-2px); box-shadow: var(--wm-shadow); }
.case-card--featured, .price-card--featured { border-color: #aee0b7; background: linear-gradient(180deg,#fff 0%,#f4fbf1 100%); box-shadow: 0 18px 44px rgba(22,138,58,.12); }
.card-region { margin: 0 0 6px; color: var(--wm-brand-dark); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.card-title { font-size: 1.22rem; margin-bottom: 8px; }
.meta-pills { margin: 12px 0 14px; }
.meta-pills span { font-size: .77rem; }
.price-card { position: relative; }
.price-card__ribbon { position: absolute; top: 18px; right: 18px; background: var(--wm-brand); color: #fff; border-radius: 999px; padding: 5px 10px; font-size: .74rem; font-weight: 900; }
.price { font-size: 2rem; font-weight: 950; color: var(--wm-brand-dark); letter-spacing: -.05em; margin: 10px 0 14px; }
.check-list { margin: 0 0 16px; padding-left: 20px; color: var(--wm-muted); }
.check-list li + li { margin-top: 5px; }
.step-card span { width: 42px; height: 42px; border-radius: 999px; background: var(--wm-brand-soft); color: var(--wm-brand-dark); display: inline-flex; align-items: center; justify-content: center; font-weight: 950; margin-bottom: 12px; }

.wm-filters { margin: 20px 0 16px; padding: 18px; border: 1px solid var(--wm-line); border-radius: var(--wm-radius); background: #fff; box-shadow: var(--wm-shadow-soft); }
.wm-filters__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.wm-filters__top h2 { font-size: clamp(1.18rem, 2vw, 1.55rem); margin: 0 0 8px; }
.wm-filters__clear { display: inline-flex; align-items: center; min-height: 36px; padding: 6px 10px; border: 1px solid var(--wm-line); border-radius: 999px; background: #fff; color: var(--wm-brand-dark); font-weight: 900; font-size: .85rem; white-space: nowrap; }
.wm-filters__grid, .wm-filters__grid--simple { display: grid; grid-template-columns: 1fr; gap: 12px; align-items: end; }
.wm-filters label, .contact-form label { display: grid; gap: 6px; }
.wm-filters label span, .contact-form label > span { font-size: .78rem; font-weight: 900; color: var(--wm-brand-dark); text-transform: uppercase; letter-spacing: .06em; }
.wm-filters select, .wm-filters input, .wm-filters textarea, .contact-form input, .contact-form textarea, .contact-form select { width: 100%; min-height: 46px; padding: 11px 13px; border: 1px solid var(--wm-line); border-radius: 14px; background: #fff; color: var(--wm-text); outline: none; }
.wm-filters select:focus, .wm-filters input:focus, .contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--wm-brand); box-shadow: 0 0 0 3px rgba(22,138,58,.12); }
.wm-filters__actions { margin-top: 12px; display: flex; justify-content: flex-start; }
.wm-filters__actions .btn { min-width: 170px; }
.wm-results-head { display: flex; align-items: baseline; gap: 7px; margin: 18px 0 14px; color: var(--wm-muted); }
.wm-results-head strong { font-size: 1.5rem; color: var(--wm-brand-dark); }
.wm-empty { grid-column: 1 / -1; padding: 18px; border: 1px dashed var(--wm-line); border-radius: 18px; background: #fff; color: var(--wm-muted); }
.wm-empty--large { display: grid; gap: 8px; align-items: start; }
.wm-empty--large strong { color: var(--wm-text); font-size: 1.1rem; }
.wm-empty--large .btn { justify-self: start; margin-top: 4px; }
.wm-polish-rule { display: flex; gap: 10px; align-items: flex-start; margin: 10px 0 14px; padding: 12px 14px; border: 1px solid rgba(22,138,58,.16); border-radius: 14px; background: #f5fbf6; color: var(--wm-brand-dark); }
.wm-polish-rule strong { white-space: nowrap; font-weight: 950; }
.wm-polish-rule strong::before { content: '✓'; display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 7px; border-radius: 999px; background: var(--wm-brand); color: #fff; font-size: .8rem; }
.wm-polish-rule span { color: #37623d; font-weight: 700; font-size: .92rem; line-height: 1.38; }

.product-panel { margin: 18px 0 22px; }
.product-tags a, .product-tags span { display: inline-flex; align-items: center; min-height: 34px; padding: 6px 11px; border-radius: 999px; background: #fff; border: 1px solid #bde7c8; color: var(--wm-brand-dark); font-weight: 900; font-size: .88rem; }
.product-tags a::before, .product-tags span::before { content: '✓'; display: inline-grid; place-items: center; width: 18px; height: 18px; margin-right: 6px; border-radius: 999px; background: var(--wm-brand); color: #fff; font-size: .72rem; }
.offer-meta { display: grid; gap: 4px; margin: 12px 0 14px; color: var(--wm-muted); font-size: .92rem; }
.offer-meta strong { color: var(--wm-text); }
.detail-list { margin: 0; padding-left: 20px; color: var(--wm-muted); }
.detail-list strong { color: var(--wm-text); }
.entry-thumb { margin: 18px 0 24px; border-radius: 22px; overflow: hidden; }
.entry-content h2, .entry-content h3, .entry-content h4 { margin-top: 28px; }
.entry-content ul, .entry-content ol { padding-left: 20px; }
.wm-gallery { margin-top: 24px; }
.wm-gallery__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.wm-gallery__grid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 16px; }
.wm-note { padding: 12px 14px; border-radius: 14px; background: #fff9eb; border: 1px solid #f3dfaa; color: #725015; font-weight: 700; }

.form-box { padding: 22px; }
.contact-form { display: grid; gap: 14px; }
.checkbox-line { display: grid !important; grid-template-columns: auto 1fr !important; align-items: start; gap: 10px !important; padding: 13px; border: 1px solid var(--wm-line); border-radius: 14px; background: #f7fbf4; }
.checkbox-line input { width: auto !important; min-height: 0 !important; margin-top: 4px; }
.checkbox-line span { text-transform: none !important; letter-spacing: 0 !important; color: var(--wm-text) !important; font-weight: 750 !important; font-size: .92rem !important; }
.alert { padding: 13px 15px; border-radius: 14px; margin-bottom: 16px; }
.alert--success { background: #edf9f0; border: 1px solid #bee1c4; }
.alert--error { background: #fff2f0; border: 1px solid #efc4bc; }
.faq-list { display: grid; gap: 10px; }
.faq-item { padding: 16px 18px; border-radius: 18px; border: 1px solid var(--wm-line); background: #fff; }
.faq-item summary { cursor: pointer; font-weight: 900; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.sponsor-cta { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.sponsor-cta h2, .sponsor-cta p { flex-basis: 100%; }

.site-footer { border-top: 1px solid var(--wm-line); background: #fbfdfb; padding-top: 34px; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 24px; }
.footer-brand img { margin-bottom: 14px; }
.footer-top h2 { font-size: 1.05rem; }
.footer-menu-list li + li { margin-top: 7px; }
.footer-bottom { margin-top: 20px; padding: 18px 0 32px; border-top: 1px solid var(--wm-line); color: var(--wm-muted); font-size: .92rem; }
.pagination { margin-top: 28px; }
.pagination .nav-links { display: flex; gap: 7px; flex-wrap: wrap; }
.pagination a, .pagination span { border: 1px solid var(--wm-line); border-radius: 10px; padding: 6px 10px; background: #fff; }
.pagination .current { background: var(--wm-brand); color: #fff; border-color: var(--wm-brand); }

@media (min-width: 700px) {
  .cards--3, .pricing-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cards--4, .steps-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .wm-gallery__grid { grid-template-columns: repeat(4,1fr); }
  .wm-filters__grid--simple { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 980px) {
  .container { width: min(calc(100% - 48px), var(--wm-container)); }
  .section { padding: 64px 0; }
  .header-grid { min-height: 82px; grid-template-columns: auto minmax(0,1fr) auto; gap: 20px; }
  .brand img { height: 58px; max-width: 360px; }
  .nav-toggle { display: none; }
  .main-nav { grid-column: auto; display: block !important; padding: 0; border: 0; background: transparent; box-shadow: none; min-width: 0; }
  .menu { flex-direction: row; justify-content: center; align-items: center; gap: 22px; flex-wrap: wrap; }
  .menu a { font-size: .94rem; white-space: nowrap; }
  .header-actions { display: flex; align-items: center; justify-content: flex-end; }
  .hero--conversion { padding: 76px 0 88px; }
  .hero-grid { grid-template-columns: minmax(0,1.08fr) minmax(330px,.92fr); align-items: center; gap: 34px; }
  .split { grid-template-columns: minmax(0,1fr) minmax(360px,.86fr); gap: 34px; align-items: start; }
  .cards--3, .pricing-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .cards--4, .steps-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .footer-top { grid-template-columns: 1.4fr .8fr .8fr .8fr; }
  .section-head--row { flex-direction: row; justify-content: space-between; align-items: flex-end; }
  .wm-filters { padding: 20px; }
  .wm-filters__grid--simple { grid-template-columns: minmax(260px, 1fr) minmax(240px, 320px) auto; }
  .wm-filters__actions .btn { min-width: 160px; }
}
@media (min-width: 1180px) {
  .brand img { max-width: 330px; }
  .menu { gap: 22px; }
}
@media (max-width: 640px) {
  .container { width: min(calc(100% - 24px), var(--wm-container)); }
  .section { padding: 48px 0; }
  .hero--conversion { padding: 42px 0 56px; }
  .hero-actions .btn { width: 100%; }
  .wm-filters__top { flex-direction: column; }
  .wm-polish-rule { display: block; }
  .wm-polish-rule span { display: block; margin-top: 6px; }
  .brand img, .footer-brand img { height: 48px; max-width: 300px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}


.hero-surface--photo { padding: 0; overflow: hidden; }
.hero-photo { display:block; width:100%; height:260px; object-fit:cover; }
.hero-surface__content { padding: 18px; }
.split--photo { align-items: center; }
.photo-card, .archive-photo { border-radius: 22px; overflow: hidden; box-shadow: var(--wm-shadow-soft); border: 1px solid var(--wm-line); background:#fff; }
.photo-card img, .archive-photo img { display:block; width:100%; height:auto; }
.archive-photo { margin: 12px 0 24px; }
.archive-photo img { aspect-ratio: 16/6; object-fit: cover; }
.card-thumb img { display:block; width:100%; aspect-ratio: 4/3; object-fit: cover; }
@media (min-width: 980px) {
  .hero-photo { height: 300px; }
  .hero-surface__content { padding: 22px; }
}


.pricing-grid--single { margin-top: 18px; }
.promo-extra { margin-top: 22px; display: grid; gap: 18px; padding: 22px; border: 1px solid var(--wm-line); border-radius: 22px; background: linear-gradient(180deg,#fff 0%,#f7fbf6 100%); box-shadow: var(--wm-shadow-soft); }
.promo-extra__main p:last-of-type, .promo-extra__side p:last-of-type { margin-bottom: 16px; }
.promo-extra__side { padding: 18px; border-radius: 18px; background: #fff; border: 1px solid #cfe7d4; }
.promo-extra__side .price { margin-top: 0; }
.sponsor-cta--soft { margin-top: 26px; padding: 20px 22px; border: 1px solid var(--wm-line); border-radius: 20px; background: #f7fbf7; }
@media (min-width: 980px) {
  .promo-extra { grid-template-columns: minmax(0, 1.8fr) minmax(280px, .9fr); align-items: start; }
}
