:root {
  --ink: #102f2a;
  --ink-2: #1c4941;
  --paper: #f4f7ee;
  --white: #ffffff;
  --lime: #e8ff77;
  --lime-2: #cfe966;
  --coral: #ff6e49;
  --muted: #60746f;
  --line: #d8e0da;
  --shadow: 0 22px 70px rgba(16, 47, 42, .12);
  --radius: 24px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 100; background: var(--lime); padding: 12px 16px; border-radius: 10px; font-weight: 800; }
.skip-link:focus { top: 16px; }
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(244, 247, 238, .92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(16,47,42,.08); padding-top: env(safe-area-inset-top, 0px); }
.nav { position: relative; min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 900; letter-spacing: -.03em; font-size: 1.25rem; }
.brand img { width: 40px; height: 40px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { text-decoration: none; font-weight: 750; font-size: .95rem; }
.nav-links a:hover { text-decoration: underline; text-underline-offset: 5px; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-button { display: none; border: 0; background: var(--ink); color: white; border-radius: 12px; padding: 10px 12px; font-weight: 800; }
.nav-backdrop { display: none; position: fixed; inset: 0; z-index: 35; background: rgba(16, 47, 42, .28); border: 0; padding: 0; cursor: pointer; }
.nav-backdrop.open { display: block; }
.btn { display: inline-flex; justify-content: center; align-items: center; gap: 9px; min-height: 50px; padding: 12px 19px; border-radius: 14px; text-decoration: none; font-weight: 850; border: 2px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: var(--white); box-shadow: 0 12px 28px rgba(16,47,42,.18); }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-small { min-height: 42px; padding: 9px 14px; }
.hero { padding: 76px 0 44px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 58px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; background: #e1e9e2; border-radius: 999px; font-size: .84rem; font-weight: 850; letter-spacing: .02em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--coral); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.04em; }
h1 { margin-top: 22px; font-size: clamp(3rem, 6.6vw, 6.2rem); max-width: 900px; }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
h3 { font-size: 1.35rem; }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.28rem); color: #425a54; max-width: 690px; margin: 24px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 30px; font-size: .94rem; font-weight: 750; color: #405650; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row span::before { content: "✓"; flex: 0 0 auto; color: var(--ink); background: var(--lime); border-radius: 50%; width: 22px; height: 22px; display: grid; place-items: center; font-size: .8rem; }
.hero-visual { position: relative; }
.hero-visual::before { content: ""; position: absolute; inset: 10% -8% -8% 18%; background: var(--ink); border-radius: 50px; transform: rotate(5deg); z-index: -1; }
.hero-note { position: absolute; left: -20px; bottom: 28px; max-width: 260px; background: var(--white); border-radius: 18px; padding: 17px; box-shadow: var(--shadow); font-weight: 800; }
.hero-note small { display: block; color: var(--muted); margin-top: 4px; font-weight: 650; }
.section { padding: 88px 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-lime { background: var(--lime); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 34px; }
.section-head p { max-width: 540px; margin: 0; color: var(--muted); }
.section-dark .section-head p { color: #bfd1cc; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: 0 10px 30px rgba(16,47,42,.05); }
.card-dark { background: var(--ink-2); border-color: rgba(255,255,255,.1); color: var(--white); }
.card p { color: var(--muted); margin: 13px 0 0; }
.card-dark p { color: #c7d6d1; }
.card-link { display: inline-flex; margin-top: 20px; font-weight: 850; text-decoration: none; border-bottom: 2px solid currentColor; }
.icon-box { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: var(--lime); font-size: 1.55rem; margin-bottom: 22px; }
.process { counter-reset: steps; }
.step { position: relative; padding-left: 76px; min-height: 70px; }
.step + .step { margin-top: 30px; }
.step::before { counter-increment: steps; content: counter(steps); position: absolute; left: 0; top: 0; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-weight: 900; font-size: 1.1rem; }
.step p { margin: 8px 0 0; color: #bfd1cc; }
.fact-panel { border-radius: 32px; padding: 44px; background: var(--white); color: var(--ink); }
.check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); font-weight: 900; }
.table-wrap { width: 100%; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 22px; box-shadow: var(--shadow); }
.price-table { width: 100%; min-width: 0; table-layout: fixed; border-collapse: collapse; background: var(--white); border-radius: 22px; overflow: hidden; }
.price-table th, .price-table td { text-align: left; padding: 18px 22px; border-bottom: 1px solid var(--line); vertical-align: top; word-break: break-word; }
.price-table th { background: var(--ink); color: white; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table th:last-child,
.price-table td:last-child { width: 9.5rem; font-weight: 900; white-space: nowrap; }
.note { padding: 18px 20px; background: #e4ebe5; border-left: 5px solid var(--coral); border-radius: 12px; }
.faq { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 20px 0; }
summary { cursor: pointer; font-weight: 850; font-size: 1.08rem; list-style: none; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; flex: 0 0 auto; font-size: 1.5rem; line-height: 1; }
details[open] summary::after { content: "−"; }
details p { max-width: 820px; color: var(--muted); }
.cta { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 30px; background: var(--coral); border-radius: 34px; padding: 46px; color: #1c211e; }
.cta p { max-width: 700px; font-size: 1.08rem; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; }
.page-hero { padding: 72px 0 44px; }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); max-width: 980px; }
.breadcrumbs { font-size: .9rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumbs a { text-underline-offset: 3px; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 48px; align-items: start; }
.prose { font-size: 1.06rem; }
.prose h2 { margin-top: 54px; font-size: clamp(1.8rem, 3.4vw, 3rem); }
.prose h3 { margin-top: 34px; }
.prose p { color: #405650; }
.prose ul, .prose ol { padding-left: 24px; }
.prose li + li { margin-top: 8px; }
.sidebar { position: sticky; top: 106px; }
.contact-card { background: var(--ink); color: white; border-radius: 26px; padding: 28px; }
.contact-card p { color: #bfd1cc; }
.contact-card .btn { width: 100%; margin-top: 10px; }
.kicker { font-size: .84rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; color: var(--coral); }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 20px; color: var(--muted); font-size: .92rem; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 26px; }
.contact-list { display: grid; gap: 14px; }
.contact-item { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 20px; }
.contact-item strong { display: block; margin-bottom: 4px; }
.form { background: white; border: 1px solid var(--line); border-radius: 26px; padding: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-weight: 800; margin-bottom: 7px; }
input, textarea, select { width: 100%; border: 1px solid #b8c6c0; background: #fafcf8; border-radius: 12px; padding: 13px 14px; color: var(--ink); font-size: 16px; }
textarea { min-height: 150px; resize: vertical; }
.field { margin-bottom: 15px; }
.site-footer { background: #09231f; color: white; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 38px; }
.site-footer p, .site-footer a { color: #bfd1cc; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #9fb4ae; font-size: .9rem; }
.mobile-call { display: none; }
.badge { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: #e3eae4; font-size: .82rem; font-weight: 850; }
@media (max-width: 920px) {
  .hero-grid, .content-layout, .contact-grid, .cta { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .hero-visual { max-width: 660px; }
  .hero-visual::before { inset: 8% 0 -6% 12%; transform: rotate(3deg); }
  .sidebar { position: static; }
  .nav-links { display: none; position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: 45; padding: 14px; border-radius: 18px; background: var(--white); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-links a { padding: 12px 10px; border-radius: 12px; }
  .nav-links a:hover { background: #eef3ee; text-decoration: none; }
  .nav-links.open { display: flex; }
  .menu-button { display: inline-flex; align-items: center; justify-content: center; min-width: 72px; min-height: 44px; }
  .nav-actions .btn { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-actions .btn { width: 100%; }
}
@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero { padding-top: 40px; padding-bottom: 28px; }
  .page-hero { padding: 44px 0 28px; }
  h1 { font-size: clamp(2.35rem, 11vw, 3.1rem); }
  .page-hero h1 { font-size: clamp(2.05rem, 10vw, 2.85rem); }
  .eyebrow { max-width: 100%; white-space: normal; line-height: 1.35; border-radius: 16px; }
  .lead { font-size: 1.05rem; margin-top: 18px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .grid-3, .grid-2, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .section-head { align-items: start; flex-direction: column; }
  .hero-note { position: static; margin-top: 14px; max-width: none; }
  .fact-panel, .cta { padding: 24px; border-radius: 24px; }
  .step { padding-left: 66px; }
  .price-table { font-size: .92rem; }
  .price-table th, .price-table td { padding: 14px 12px; }
  .price-table th:last-child,
  .price-table td:last-child { width: 38%; white-space: normal; line-height: 1.3; }
  .breadcrumbs { line-height: 1.45; }
  .footer-bottom { flex-direction: column; }
  .form { padding: 22px; }
  .mobile-call {
    display: flex;
    position: fixed;
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 50;
    width: auto;
    max-width: calc(100vw - 24px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
    min-height: 48px;
    padding: 12px 14px;
    box-shadow: 0 15px 45px rgba(0,0,0,.24);
    font-size: .95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  body { padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
}
@media (max-width: 380px) {
  h1 { font-size: clamp(2.1rem, 10.5vw, 2.6rem); }
  .brand span { font-size: 1.1rem; }
  .mobile-call { font-size: .88rem; letter-spacing: -.01em; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
