:root {
  --primary: #a18307;
  --primary-hover: #85670e;
  --primary-text: #ffffff;
  --accent: #f6fa15;
  --text: #422006;
  --text-muted: #78716c;
  --bg: #fefce8;
  --bg-muted: #fef9c3;
  --bg-inverse: #422006;
  --border: #fef08a;
  --font-heading: "Crimson Pro", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --h1-size: clamp(2.25rem, 5.5vw, 3.75rem);
  --h2-size: clamp(1.5rem, 4vw, 2.5rem);
  --body-size: 1.0625rem;
  --line-height: 1.7;
  --radius-sm: 0.125rem;
  --radius-md: 0.25rem;
  --radius-lg: 0.375rem;
  --shadow: 0 2px 6px rgba(66,32,6,0.10);
  --container-max: 1100px;
  --section-padding: 6rem 1.5rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: var(--line-height);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: 1.25rem; }
p { color: var(--text); }
a { color: inherit; text-decoration: none; }

.chy_container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.chy_btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--primary-text);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: center;
}
.chy_btn:hover { background: var(--primary-hover); }
.chy_btn--ghost {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.chy_btn--ghost:hover { background: var(--bg-muted); }


.chy_header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.chy_header_inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; padding-bottom: 1rem;
}
.chy_header_logo {
  font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--text);
}
.chy_header_nav { display: flex; gap: 1.5rem; }
.chy_header_nav-link { color: var(--text-muted); font-weight: 500; transition: color 0.2s; }
.chy_header_nav-link:hover { color: var(--text); }
.chy_header_nav-link--active { color: var(--primary); }
@media (max-width: 640px) {
  .chy_header_nav { gap: 1rem; }
  .chy_header_nav-link { font-size: 0.9rem; }
}


.chy_ctaband { padding: 4rem 1.5rem; background: var(--bg-inverse); color: var(--bg); }
.chy_ctaband_inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.chy_ctaband_headline { color: var(--bg); margin-bottom: 0.5rem; }
.chy_ctaband_sub { color: var(--bg); opacity: 0.85; }
.chy_ctaband_btn { white-space: nowrap; padding: 0.875rem 2rem; }


.chy_areas { padding: var(--section-padding); background: var(--bg); border-top: 1px solid var(--border); }
.chy_areas_head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.chy_areas_title { margin-bottom: 0.5rem; }
.chy_areas_sub { color: var(--text-muted); }
.chy_areas_grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 0.625rem;
  max-width: 980px; margin: 0 auto;
}
.chy_areas_item {
  padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-md);
  background: var(--bg-muted); text-align: left; font-weight: 500;
  color: var(--text); font-size: 0.9375rem;
  display: flex; align-items: center; gap: 0.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.chy_areas_item:hover { border-color: var(--primary); transform: translateY(-1px); }
.chy_areas_pin { font-size: 1rem; }


.chy_testi { padding: var(--section-padding); background: var(--bg); }
.chy_testi_title { text-align: center; margin-bottom: 3rem; }
.chy_testi_grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.chy_testi_card {
  background: var(--bg-muted); padding: 1.75rem;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 1rem;
}
.chy_testi_quote {
  font-style: italic; color: var(--text); font-size: 1.0625rem; line-height: 1.6;
  border-left: 3px solid var(--primary); padding-left: 1rem;
}
.chy_testi_author { display: flex; flex-direction: column; gap: 0.125rem; }
.chy_testi_name { font-weight: 600; color: var(--text); }
.chy_testi_role { color: var(--text-muted); font-size: 0.9rem; }


.chy_features { padding: var(--section-padding); background: var(--bg-muted); }
.chy_features_head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.chy_features_title { margin-bottom: 0.75rem; }
.chy_features_subtitle { color: var(--text-muted); font-size: 1.0625rem; }
.chy_features_grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.chy_features_card {
  background: var(--bg); padding: 1.75rem;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.chy_features_card-title { margin-bottom: 0.5rem; }
.chy_features_card-desc { color: var(--text-muted); }


.chy_contact { padding: var(--section-padding); background: var(--bg); }
.chy_contact_head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.chy_contact_title { margin-bottom: 0.75rem; }
.chy_contact_sub { color: var(--text-muted); font-size: 1.0625rem; }
.chy_contact_body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 980px; margin: 0 auto;
}
.chy_contact_info { display: flex; flex-direction: column; gap: 0.75rem; }
.chy_contact_info a { color: var(--primary); }
.chy_contact_form { display: flex; flex-direction: column; gap: 0.75rem; }
.chy_contact_form-intro { color: var(--text-muted); margin-bottom: 0.5rem; }
.chy_contact_input, .chy_contact_textarea, .chy_contact_select {
  font-family: inherit; font-size: 1rem; padding: 0.75rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius-md);
  background: var(--bg); color: var(--text);
  width: 100%;
}
.chy_contact_input:focus, .chy_contact_textarea:focus, .chy_contact_select:focus {
  outline: none; border-color: var(--primary);
}

/* v2 — компактная карточка с двумя полями в строку */
.chy_contact_card {
  background: var(--bg-muted); padding: 2.5rem 2rem;
  border-radius: var(--radius-lg); max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 2.5rem; align-items: center;
}
.chy_contact_card-text { display: flex; flex-direction: column; gap: 0.75rem; }
.chy_contact_details { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }
.chy_contact_detail { color: var(--text-muted); font-size: 0.9375rem; }
.chy_contact_detail[href]:hover { color: var(--primary); }
.chy_contact_form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.chy_contact_field { display: flex; flex-direction: column; gap: 0.25rem; }
.chy_contact_label { font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; }
.chy_contact_submit { grid-column: span 2; margin-top: 0.5rem; }
@media (max-width: 880px) {
  .chy_contact_card { grid-template-columns: 1fr; gap: 1.75rem; padding: 2rem 1.5rem; }
}
@media (max-width: 520px) {
  .chy_contact_form-row { grid-template-columns: 1fr; }
  .chy_contact_submit { grid-column: span 1; }
}

/* v3 — две колонки aside + полная форма */
.chy_contact_split {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 3.5rem;
  max-width: 1080px; margin: 0 auto; align-items: start;
}
.chy_contact_aside { padding-top: 0.5rem; }
.chy_contact_list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.5rem; color: var(--text-muted); }
.chy_contact_list a { color: var(--primary); }
.chy_contact_row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.chy_contact_submit-full { width: 100%; padding: 0.875rem 1rem; }
@media (max-width: 720px) {
  .chy_contact_body { grid-template-columns: 1fr; gap: 2rem; }
  .chy_contact_split { grid-template-columns: 1fr; gap: 2rem; }
  .chy_contact_row { grid-template-columns: 1fr; }
}


.chy_pricing { padding: var(--section-padding); background: var(--bg-muted); }
.chy_pricing_head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.chy_pricing_title { margin-bottom: 0.5rem; }
.chy_pricing_sub { color: var(--text-muted); }
.chy_pricing_grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
  max-width: 1100px; margin: 0 auto; align-items: stretch;
}
.chy_pricing_card {
  position: relative; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem;
  display: flex; flex-direction: column; gap: 1.25rem; text-align: center;
  box-shadow: var(--shadow);
}
.chy_pricing_card--featured {
  border-color: var(--primary); border-width: 2px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
}
.chy_pricing_badge {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--primary-text);
  padding: 0.25rem 0.875rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}
.chy_pricing_name { font-size: 1.125rem; color: var(--text); }
.chy_pricing_price {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700;
  color: var(--primary); font-family: var(--font-heading); line-height: 1.1;
}
.chy_pricing_features {
  list-style: none; padding: 0; margin: 0; text-align: left;
  display: flex; flex-direction: column; gap: 0.5rem;
  color: var(--text-muted); flex: 1;
}
.chy_pricing_features li {
  padding-left: 1.5rem; position: relative; line-height: 1.5;
}
.chy_pricing_features li::before {
  content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700;
}
.chy_pricing_cta { margin-top: 0.25rem; }


.chy_footer { background: var(--bg-inverse); color: var(--bg); padding-top: 3.5rem; }
.chy_footer_grid {
  display: grid; gap: 2rem;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding-bottom: 2.5rem;
}
.chy_footer_brand {
  font-family: var(--font-heading); font-size: 1.25rem; display: block; margin-bottom: 0.75rem;
}
.chy_footer_about-text { color: var(--bg); opacity: 0.7; max-width: 320px; line-height: 1.6; }
.chy_footer_col-title { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.6; margin-bottom: 1rem; }
.chy_footer_col-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.chy_footer_col-list a, .chy_footer_contact p { color: var(--bg); opacity: 0.7; transition: opacity 0.2s; }
.chy_footer_col-list a:hover { opacity: 1; }
.chy_footer_contact p { margin-bottom: 0.5rem; }
.chy_footer_bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; opacity: 0.7;
}
.chy_footer_bottom > div {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.chy_footer_legal { display: flex; gap: 1.25rem; }
.chy_footer_legal a { color: var(--bg); }
@media (max-width: 720px) {
  .chy_footer_grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .chy_footer_grid { grid-template-columns: 1fr; }
}


.chy_faq { padding: var(--section-padding); background: var(--bg-muted); }
.chy_faq_title { text-align: center; margin-bottom: 2.5rem; }
.chy_faq_list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.chy_faq_item {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}
.chy_faq_question { font-weight: 600; cursor: pointer; color: var(--text); }
.chy_faq_answer { color: var(--text-muted); margin-top: 0.75rem; }


.chy_legal { padding: var(--section-padding); background: var(--bg); }
.chy_legal_inner { max-width: 760px; }
.chy_legal_inner h1 { font-size: var(--h1-size); margin-bottom: 1.5rem; }
.chy_legal_inner h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 0.75rem; color: var(--text); }
.chy_legal_inner p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.7; }
.chy_legal_inner ul { margin: 1rem 0 1.25rem 1.5rem; color: var(--text-muted); }
.chy_legal_inner li { margin-bottom: 0.5rem; line-height: 1.65; }
.chy_legal_inner strong { color: var(--text); font-weight: 600; }
.chy_legal_inner a { color: var(--primary); text-decoration: underline; }


.chy_whyus { padding: var(--section-padding); background: var(--bg); }
.chy_whyus_head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.chy_whyus_title { margin-bottom: 0.5rem; }
.chy_whyus_sub { color: var(--text-muted); }
.chy_whyus_grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem;
  max-width: 1100px; margin: 0 auto;
}
.chy_whyus_item {
  display: flex; flex-direction: column; gap: 0.5rem; padding: 1.25rem 1rem;
  text-align: center; background: var(--bg-muted); border-radius: var(--radius-lg);
}
.chy_whyus_icon {
  font-size: 2rem; color: var(--primary); line-height: 1;
}
.chy_whyus_name { font-size: 1.0625rem; color: var(--text); }
.chy_whyus_desc { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.55; }


.chy_process { padding: var(--section-padding); background: var(--bg-muted); }
.chy_process_head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.chy_process_title { margin-bottom: 0.5rem; }
.chy_process_sub { color: var(--text-muted); }
.chy_process_steps {
  list-style: none; max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.chy_process_step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: start;
  padding: 1.5rem; background: var(--bg); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.chy_process_num {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary); color: var(--primary-text);
  border-radius: 50%; font-weight: 700; font-family: var(--font-heading);
}
.chy_process_body { display: flex; flex-direction: column; gap: 0.375rem; }
.chy_process_step-title { font-size: 1.0625rem; color: var(--text); }
.chy_process_desc { color: var(--text-muted); }


.chy_cookies {
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem;
  max-width: 720px; margin: 0 auto;
  background: var(--bg-inverse); color: var(--bg);
  padding: 1rem 1.25rem; border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  z-index: 100; font-size: 0.9375rem;
}
.chy_cookies_text { flex: 1; min-width: 240px; }
.chy_cookies_text a { color: var(--bg); text-decoration: underline; }
.chy_cookies_btn {
  background: var(--primary); color: var(--primary-text);
  padding: 0.5rem 1.25rem; border: none; border-radius: var(--radius-md);
  font-weight: 600; cursor: pointer; font-size: 0.9375rem;
}
.chy_cookies_btn:hover { background: var(--primary-hover); }
.chy_cookies_btn--ghost {
  background: transparent; color: var(--bg); border: 1px solid rgba(255,255,255,0.3);
  padding: 0.5rem 1rem; border-radius: var(--radius-md); cursor: pointer; font-size: 0.9375rem;
}


.chy_hero { padding: var(--section-padding); background: var(--hero-bg, var(--bg)); }
.chy_hero_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.chy_hero_text { max-width: 640px; }
.chy_hero_headline { margin-bottom: 1.25rem; }
.chy_hero_subheadline { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 2rem; }
.chy_hero_cta { font-size: 1.05rem; padding: 0.875rem 2rem; }
.chy_hero_media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.chy_hero_media img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 4/3; object-fit: cover;
}
@media (max-width: 880px) {
  .chy_hero_inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .chy_hero_media { order: -1; max-width: 540px; }
}