:root {
  --ink: #26251f;
  --muted: #67675e;
  --line: #dedbd0;
  --paper: #fbfaf6;
  --sun: #f4c829;
  --sun-deep: #8d6911;
  --forest: #264b3d;
  --mint: #e9f3e9;
  --rose: #fae9e3;
  --sky: #e7f1f4;
  --shadow: 0 18px 44px rgba(44, 39, 24, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.5; }
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .18em; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid #1a77c8; outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip { position: absolute; left: 14px; top: -80px; z-index: 20; padding: 10px 14px; background: #fff; border-radius: 8px; }
.skip:focus { top: 14px; }

.header { position: sticky; top: 0; z-index: 10; border-bottom: 1px solid rgba(38,37,31,.12); background: rgba(251,250,246,.94); backdrop-filter: blur(12px); }
.nav { min-height: 76px; display: flex; align-items: center; gap: 26px; justify-content: space-between; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; letter-spacing: .025em; white-space: nowrap; }
.brand-mark { width: 24px; height: 24px; border-radius: 50%; background: var(--sun); box-shadow: inset -5px -4px 0 rgba(141,105,17,.18); }
.nav-links { display: flex; align-items: center; gap: 20px; font-size: 15px; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--sun-deep); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 18px; border: 1px solid transparent; border-radius: 10px; font: inherit; font-weight: 750; text-decoration: none; cursor: pointer; }
.button--sun { background: var(--sun); color: #272313; }
.button--sun:hover { background: #ffd74b; }
.button--line { border-color: var(--ink); color: var(--ink); background: transparent; }
.cta-short { display: none; }

.hero { padding: 68px 0 54px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 56px; }
.eyebrow { margin: 0 0 18px; color: var(--sun-deep); font-size: 14px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 690px; margin-bottom: 22px; font-size: clamp(40px, 5.6vw, 72px); line-height: 1.03; letter-spacing: -.045em; }
h2 { font-size: clamp(30px, 3.7vw, 48px); line-height: 1.06; letter-spacing: -.035em; }
h3 { font-size: 21px; line-height: 1.17; }
.lead { max-width: 630px; color: #4e4c42; font-size: clamp(19px, 2vw, 24px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { margin: 16px 0 0; color: var(--muted); font-size: 14px; }
.hero-photo { position: relative; min-height: 490px; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); background: #ddd7ca; }
.hero-photo picture, .proof-photo picture { display: block; width: 100%; height: 100%; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-card { position: absolute; right: 18px; bottom: 18px; max-width: 280px; padding: 18px; border: 1px solid rgba(255,255,255,.6); border-radius: 14px; color: #fff; background: rgba(31, 37, 31, .76); backdrop-filter: blur(10px); }
.hero-card strong { display: block; font-size: 18px; }

.section { padding: 84px 0; }
.section--soft { background: #f1f0e9; }
.section--dark { color: #fff; background: #24483b; }
.section--dark .eyebrow { color: #ffe06b; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 34px; }
.section-head p { max-width: 540px; margin: 0; color: var(--muted); font-size: 18px; }
.section--dark .section-head p { color: #dce8df; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { display: flex; min-height: 244px; flex-direction: column; justify-content: space-between; padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: #fff; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-num { color: var(--sun-deep); font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.service-card p { margin: 0; color: var(--muted); }
.service-card span:last-child { font-weight: 750; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { padding: 26px; border-radius: 16px; background: #fff; color: var(--ink); }
.step::before { content: "0" counter(step); counter-increment: step; display: grid; width: 38px; height: 38px; place-items: center; margin-bottom: 36px; border-radius: 50%; background: var(--sun); color: #352b0f; font-weight: 800; }
.step p { margin: 0; color: var(--muted); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.price-card--featured { border: 2px solid var(--sun); box-shadow: var(--shadow); }
.price { margin: 22px 0; font-size: 30px; font-weight: 800; letter-spacing: -.03em; }
.price-card ul { flex: 1; margin: 0 0 24px; padding-left: 20px; color: #4d4b43; }
.price-card li + li { margin-top: 8px; }
.pricing-terms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 24px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--line); }
.pricing-terms article { display: grid; gap: 6px; padding: 18px; background: var(--paper); }
.pricing-terms strong { font-size: 15px; }
.pricing-terms span { color: var(--muted); font-size: 14px; }
.proof { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: center; }
.proof-photo { overflow: hidden; border-radius: 18px; aspect-ratio: 4 / 3; }
.proof-photo img { width: 100%; height: 100%; object-fit: cover; }
.checklist { display: grid; gap: 14px; margin: 25px 0 0; padding: 0; list-style: none; }
.checklist li { display: flex; gap: 11px; align-items: start; }
.checklist li::before { content: ""; width: 20px; height: 20px; flex: 0 0 auto; margin-top: 3px; border-radius: 50%; background: var(--sun); box-shadow: inset 0 0 0 5px #24483b; }
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.case { padding: 22px; border: 1px solid rgba(255,255,255,.25); border-radius: 16px; }
.case small { color: #bed4c6; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.case p { margin: 15px 0 0; color: #e4eee7; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq summary { cursor: pointer; font-size: 19px; font-weight: 750; }
.faq details p { max-width: 790px; margin: 12px 0 0; color: var(--muted); }
.contact { padding: 76px 0; background: #fbcb27; }
.contact-grid { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; }
.contact h2 { max-width: 720px; margin-bottom: 12px; }
.contact p { max-width: 650px; margin-bottom: 0; color: #4c4014; font-size: 18px; }
.footer { padding: 42px 0; color: #e9eee8; background: #1d352c; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 36px; align-items: start; }
.footer .brand { color: #fff; }
.footer p { margin: 10px 0 0; color: #bec9c0; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #eef4ef; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 35px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); color: #b5c2b8; font-size: 14px; }

.modal[hidden] { display: none; }
.modal { position: fixed; z-index: 30; inset: 0; display: grid; place-items: center; padding: 18px; background: rgba(20, 26, 21, .6); }
.modal-panel { width: min(540px, 100%); padding: 30px; border-radius: 18px; background: #fff; box-shadow: 0 24px 80px rgba(0,0,0,.32); }
.modal-top { display: flex; align-items: start; justify-content: space-between; gap: 12px; }
.modal h2 { margin-bottom: 8px; font-size: 30px; }
.icon-button { display: grid; width: 38px; height: 38px; place-items: center; border: 0; border-radius: 50%; background: #f1f0e9; color: var(--ink); font-size: 25px; cursor: pointer; }
.form { display: grid; gap: 15px; margin-top: 22px; }
.form label { display: grid; gap: 7px; color: #39372f; font-size: 14px; font-weight: 700; }
.form input, .form textarea { width: 100%; padding: 13px 14px; border: 1px solid #a8a598; border-radius: 9px; color: var(--ink); background: #fff; font: inherit; }
.form textarea { min-height: 95px; resize: vertical; }
.form-help { color: var(--muted); font-size: 13px; }
.form-status { min-height: 24px; margin: 0; color: #264b3d; font-weight: 700; }
.cookie[hidden] { display: none; }
.cookie { position: fixed; z-index: 15; right: 18px; bottom: 18px; display: flex; align-items: center; gap: 14px; width: min(430px, calc(100% - 36px)); padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow); }
.cookie p { flex: 1; margin: 0; font-size: 14px; }
.cookie .button { min-height: 40px; padding: 8px 14px; flex: 0 0 auto; }

.service-hero { padding: 82px 0 56px; background: linear-gradient(125deg, #e8f0e9, #fbfaf6 55%); }
.breadcrumb { margin: 0 0 24px; color: var(--muted); font-size: 14px; }
.service-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 42px; align-items: start; }
.side-card { position: sticky; top: 100px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.side-card p { color: var(--muted); }
.article { font-size: 18px; }
.article h2 { margin-top: 58px; font-size: 34px; }
.article p, .article li { color: #4d4b43; }
.article li + li { margin-top: 9px; }
.legal { padding: 72px 0; max-width: 820px; }

@media (max-width: 860px) {
  .nav { min-height: 66px; }
  .nav-links { display: none; }
  .hero { padding-top: 38px; }
  .hero-grid, .proof, .service-layout, .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-photo { min-height: 360px; }
  .service-grid, .price-grid, .cases, .steps, .pricing-terms { grid-template-columns: repeat(2, 1fr); }
  .side-card { position: static; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1160px); }
  .header .button { min-height: 40px; padding: 8px 12px; font-size: 14px; }
  .section { padding: 58px 0; }
  .section-head { display: block; }
  .section-head h2 { margin-bottom: 12px; }
  .hero-photo { min-height: 310px; }
  .service-grid, .price-grid, .cases, .steps, .pricing-terms { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { display: block; }
  .footer-bottom span + span { display: block; margin-top: 8px; }
}
@media (max-width: 380px) {
  .nav { gap: 10px; }
  .brand { gap: 7px; font-size: 13px; }
  .brand-mark { width: 20px; height: 20px; }
  .header .button { padding-inline: 9px; font-size: 12px; }
  .header-cta { max-width: 122px; line-height: 1.15; }
  .cta-full { display: none; }
  .cta-short { display: inline; }
  .cookie { left: 10px; right: 10px; width: auto; gap: 10px; padding: 12px; }
  .cookie p { font-size: 13px; }
  .cookie .button { padding-inline: 11px; }
}
