:root {
  --font-family: "Exo 2", sans-serif;
  --font-size-base: 15.1px;
  --line-height-base: 1.99;

  --max-w: 1000px;
  --space-x: 1.59rem;
  --space-y: 1.5rem;
  --gap: 0.87rem;
  --space-section-y: calc(var(--space-y) * 2.4);
  --space-section-x: var(--space-x);
  --space-block: calc(var(--gap) * 1.5);
  --space-card: calc(var(--space-y) * .75);
  --font-size-sm: calc(var(--font-size-base) * .875);
  --font-size-md: var(--font-size-base);
  --font-size-lg: calc(var(--font-size-base) * 1.125);
  --font-size-h3: calc(var(--font-size-base) * 1.35);
  --font-size-h2: calc(var(--font-size-base) * 2);
  --font-size-h1: calc(var(--font-size-base) * 2.65);
  --motion-distance: calc(var(--gap) * var(--random-number));

  --radius-xl: 1.34rem;
  --radius-lg: 1rem;
  --radius-md: 0.7rem;
  --radius-sm: 0.3rem;

  --shadow-sm: 0 0px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 16px rgba(0,0,0,0.05);
  --shadow-lg: 0 8px 34px rgba(0,0,0,0.06);

  --overlay: rgba(0,0,0,0.4);
  --anim-duration: 590ms;
  --anim-ease: ease-in-out;
  --random-number: 1;

  --brand: #0a7e7a;
  --brand-contrast: #ffffff;
  --accent: #d4a373;
  --accent-contrast: #3d2b1f;

  --neutral-0: #ffffff;
  --neutral-100: #f7f5f2;
  --neutral-300: #d6d2cb;
  --neutral-600: #7a756e;
  --neutral-800: #3d3a36;
  --neutral-900: #1a1816;

  --page-bg: #fcfaf7;
  --page-fg: #1a1816;
  --muted-bg: #f2efe9;
  --muted-fg: #1a1816;
  --card-bg: #ffffff;
  --card-fg: #1a1816;
  --card-border: #e0dcd4;
  --inverse-bg: #1a1816;
  --inverse-fg: #fcfaf7;
  --primary-bg: #0a7e7a;
  --primary-fg: #ffffff;
  --primary-hover: #086662;
  --accent-bg: #d4a373;
  --accent-fg: #3d2b1f;
  --accent-hover: #c48f5e;
  --gradient-hero-bg: linear-gradient(135deg, #fcfaf7 0%, #f2efe9 100%);
  --gradient-hero-fg: #1a1816;
  --gradient-accent-bg: linear-gradient(135deg, #d4a373 0%, #c48f5e 100%);
  --gradient-accent-fg: #3d2b1f;

  --ring: #0a7e7a;

  --link: #0a7e7a;
  --link-hover: #d4a373;

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: color-mix(in srgb, currentColor 10%, transparent);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}
a{color:inherit;}
.btn-primary,.btn.btn-primary{background:var(--primary-bg)!important;color:var(--primary-fg)!important;border-color:var(--primary-bg)!important;}
.btn-primary:hover,.btn.btn-primary:hover{background:var(--primary-hover)!important;color:var(--primary-fg)!important;border-color:var(--primary-hover)!important;}
.btn-outline-primary{color:var(--primary-bg)!important;border-color:var(--primary-bg)!important;}
.btn-outline-primary:hover{background:var(--primary-bg)!important;color:var(--primary-fg)!important;}
.bg-primary{background:var(--primary-bg)!important;color:var(--primary-fg)!important;}
.text-primary{color:var(--primary-bg)!important;}
.border-primary{border-color:var(--primary-bg)!important;}
.bg-light{background:var(--page-bg)!important;color:var(--page-fg)!important;}
.bg-dark{background:var(--inverse-bg)!important;color:var(--inverse-fg)!important;}

.site-header {
  background: var(--page-bg);
  border-bottom: 1px solid var(--muted-bg);
  width: 100%;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
}

.logo {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--page-fg);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--link-hover);
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}

.nav-list a {
  color: var(--page-fg);
  text-decoration: none;
  font-size: var(--font-size-md);
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--link-hover);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
  z-index: 100;
}

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--page-fg);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--page-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 90;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
  }

  .nav-list a {
    font-size: var(--font-size-h3);
    padding: 0.5rem 1rem;
  }
}

footer {
    background-color: var(--muted-bg, #f5f5f5);
    color: var(--page-fg, #333);
    font-family: var(--font-family, 'Arial', sans-serif);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.6);
    padding: var(--space-section-y, 2rem) var(--space-section-x, 1rem);
    width: 100%;
  }

  .footer-container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap, 1.5rem);
  }

  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: var(--space-y, 0.5rem);
  }

  .contact-item {
    display: block;
    font-size: var(--font-size-sm, 0.875rem);
  }

  .contact-item a {
    color: var(--link, #0066cc);
    text-decoration: none;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .contact-item a:hover {
    color: var(--link-hover, #004499);
    text-decoration: underline;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    font-size: var(--font-size-h2, 1.5rem);
    font-weight: bold;
    color: var(--primary-bg, #2c3e50);
  }

  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap, 1.5rem);
  }

  .footer-nav a {
    color: var(--link, #0066cc);
    text-decoration: none;
    font-size: var(--font-size-sm, 0.875rem);
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .footer-nav a:hover {
    color: var(--link-hover, #004499);
    text-decoration: underline;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap, 1.5rem);
  }

  .footer-legal a {
    color: var(--muted-fg, #777);
    text-decoration: none;
    font-size: var(--font-size-sm, 0.875rem);
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .footer-legal a:hover {
    color: var(--link-hover, #004499);
    text-decoration: underline;
  }

  .footer-disclaimer {
    text-align: center;
    font-size: var(--font-size-sm, 0.875rem);
    color: var(--muted-fg, #777);
    border-top: 1px solid var(--card-border, #ddd);
    padding-top: var(--space-y, 0.5rem);
  }

  .footer-disclaimer p {
    margin: 0;
  }

  .footer-copyright {
    text-align: center;
    font-size: var(--font-size-sm, 0.875rem);
    color: var(--muted-fg, #777);
  }

  .footer-copyright p {
    margin: 0;
  }

  @media (max-width: 768px) {
    .footer-nav ul {
      flex-direction: column;
      align-items: center;
    }

    .footer-legal {
      flex-direction: column;
      align-items: center;
    }
  }

.cookie-notice {
  position: fixed;
  top: var(--space-y, 16px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  max-width: 680px;
  width: calc(100% - var(--space-x, 16px) * 2);
  background: var(--card-bg, #ffffff);
  color: var(--card-fg, #1a1a1a);
  border-radius: var(--radius-lg, 12px);
  box-shadow: var(--shadow-lg, 0 4px 24px rgba(0,0,0,0.12));
  padding: var(--space-block, 16px) var(--space-card, 20px);
  font-family: var(--font-family, system-ui, -apple-system, sans-serif);
  font-size: var(--font-size-sm, 0.875rem);
  line-height: var(--line-height-base, 1.5);
  box-sizing: border-box;
}

.cookie-notice__inner {
  display: flex;
  flex-direction: column;
  gap: var(--gap, 12px);
}

.cookie-notice__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cookie-notice__title {
  margin: 0;
  font-size: var(--font-size-md, 1rem);
  font-weight: 600;
}

.cookie-notice__text {
  margin: 0;
  font-size: var(--font-size-sm, 0.875rem);
  opacity: 0.85;
}

.cookie-notice__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap, 8px);
  align-items: center;
}

.cookie-notice__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius-sm, 6px);
  font-size: var(--font-size-sm, 0.875rem);
  line-height: 1.2;
  cursor: pointer;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), opacity var(--anim-duration, 0.2s) var(--anim-ease, ease);
  font-family: inherit;
}

.cookie-notice__btn--primary {
  background: var(--primary-bg, #0055ff);
  color: var(--primary-fg, #ffffff);
}

.cookie-notice__btn--primary:hover {
  background: var(--primary-hover, #0044cc);
}

.cookie-notice__btn--ghost {
  background: var(--btn-ghost-bg, transparent);
  color: var(--card-fg, #1a1a1a);
  border: 1px solid var(--card-border, #d0d0d0);
}

.cookie-notice__btn--ghost:hover {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}

.cookie-notice__btn--link {
  background: transparent;
  color: var(--link, #0055ff);
  padding: 8px 12px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-notice__btn--link:hover {
  color: var(--link-hover, #003399);
}

.intro-focus {
      background: linear-gradient(135deg, #fcfaf7 0%, #f2efe9 100%);
      color: #1a1816;
      padding: 3rem 1.5rem;
    }
    .intro-focus .inner {
      max-width: 1120px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 2rem;
    }
    .intro-focus .text {
      flex: 1 1 300px;
    }
    .intro-focus h1 {
      font-size: 2rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 0.75rem;
      color: #1a1816;
    }
    .intro-focus .lead {
      font-size: 1.05rem;
      line-height: 1.5;
      margin: 0 0 1.5rem;
      color: #1a1816;
    }
    .intro-focus .action {
      display: inline-block;
      background: #0a7e7a;
      color: #ffffff;
      padding: 0.7rem 1.6rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: background 0.2s;
    }
    .intro-focus .action:hover {
      background: #086662;
    }
    .intro-focus .visual {
      flex: 1 1 280px;
      max-width: 480px;
    }
    .intro-focus .visual img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
    }
    @media (max-width: 640px) {
      .intro-focus {
        padding: 2rem 1rem;
      }
      .intro-focus h1 {
        font-size: 1.6rem;
      }
      .intro-focus .inner {
        flex-direction: column;
      }
      .intro-focus .visual {
        max-width: 100%;
      }
    }

.messages {
      background: #fcfaf7;
      color: #1a1816;
      padding: 2.5rem 1rem;
      
    }
    .messages .inner {
      max-width: 820px;
      margin: 0 auto;
    }
    .messages h2 {
      font-size: 1.6rem;
      font-weight: 500;
      letter-spacing: -0.01em;
      margin: 0 0 0.75rem 0;
      line-height: 1.2;
      color: #1a1816;
    }
    .messages .body-text {
      font-size: 0.95rem;
      line-height: 1.55;
      color: #1a1816;
      margin: 0 0 1.5rem 0;
      max-width: 640px;
    }
    .messages .thread {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .messages .entry {
      background: #ffffff;
      border: 1px solid #e0dcd4;
      border-radius: 12px;
      padding: 1rem 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      transition: box-shadow 0.15s ease;
    }
    .messages .entry:hover {
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    .messages .entry-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.25rem 0.75rem;
    }
    .messages .entry-author {
      font-weight: 500;
      font-size: 0.95rem;
      color: #0a7e7a;
    }
    .messages .entry-date {
      font-size: 0.75rem;
      color: #7a766e;
      white-space: nowrap;
    }
    .messages .entry-title {
      font-size: 0.95rem;
      font-weight: 500;
      color: #1a1816;
      margin: 0.1rem 0 0.2rem 0;
      line-height: 1.3;
    }
    .messages .entry-excerpt {
      font-size: 0.88rem;
      line-height: 1.5;
      color: #3d3a35;
      margin: 0;
    }
    .messages .entry-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1rem;
      margin-top: 0.35rem;
      font-size: 0.78rem;
      color: #7a766e;
    }
    .messages .entry-meta span {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
    }
    .messages .entry-meta .tag {
      background: #f2efe9;
      padding: 0.1rem 0.5rem;
      border-radius: 20px;
      color: #1a1816;
      font-size: 0.72rem;
    }
    .messages .reply-indicator {
      font-size: 0.78rem;
      color: #7a766e;
      margin-top: 0.2rem;
      border-left: 2px solid #d4a373;
      padding-left: 0.6rem;
    }
    @media (max-width: 540px) {
      .messages {
        padding: 1.5rem 0.75rem;
      }
      .messages h2 {
        font-size: 1.3rem;
      }
      .messages .entry {
        padding: 0.75rem 1rem;
      }
      .messages .entry-head {
        flex-direction: column;
        align-items: flex-start;
      }
    }

.social-proof {
      background: var(--inverse-bg, #1a1816);
      color: var(--inverse-fg, #fcfaf7);
      padding: 3.5rem 1.5rem;
      
    }
    .social-proof .inner {
      max-width: 920px;
      margin: 0 auto;
    }
    .social-proof h2 {
      font-size: 1.6rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      margin: 0 0 1rem 0;
      line-height: 1.3;
      color: var(--accent-bg, #d4a373);
    }
    .social-proof .lead {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2.2rem 0;
      opacity: 0.9;
      max-width: 680px;
    }
    .social-proof .notes {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .social-proof .note {
      background: rgba(255,255,255,0.04);
      border-left: 3px solid var(--accent-bg, #d4a373);
      padding: 1.2rem 1.4rem;
      border-radius: 0 8px 8px 0;
    }
    .social-proof .note .meta {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--accent-bg, #d4a373);
      margin-bottom: 0.3rem;
      display: block;
    }
    .social-proof .note .title {
      font-size: 1.05rem;
      font-weight: 500;
      margin: 0 0 0.35rem 0;
      line-height: 1.3;
    }
    .social-proof .note .text {
      font-size: 0.92rem;
      line-height: 1.5;
      opacity: 0.85;
      margin: 0;
    }
    @media (min-width: 600px) {
      .social-proof {
        padding: 4.5rem 2rem;
      }
      .social-proof h2 {
        font-size: 1.85rem;
      }
      .social-proof .lead {
        font-size: 1.05rem;
      }
      .social-proof .notes {
        gap: 1.2rem;
      }
      .social-proof .note {
        padding: 1.3rem 1.6rem;
      }
    }

.social-proof .visual {
  margin: var(--space-card) 0 0;
  max-width: min(42rem, 100%);
}
.social-proof .visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.why-choose {
      padding: 3.5rem 1.5rem;
      background: var(--page-bg);
      color: var(--page-fg);
    }
    .why-choose .inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .why-choose h2 {
      font-size: 1.75rem;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 1.25rem;
      letter-spacing: -0.01em;
    }
    .why-choose p {
      font-size: 1rem;
      line-height: 1.65;
      margin: 0 0 1.5rem;
      color: #3d3a36;
    }
    .why-choose .action-link {
      display: inline-block;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--primary-bg, #0a7e7a);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
    }
    .why-choose .action-link:hover {
      border-color: currentColor;
    }
    @media (min-width: 640px) {
      .why-choose {
        padding: 4.5rem 2rem;
      }
      .why-choose h2 {
        font-size: 2rem;
      }
      .why-choose p {
        font-size: 1.0625rem;
      }
    }

.recommendations {
      background: var(--page-bg, #fcfaf7);
      color: var(--page-fg, #1a1816);
      padding: 3rem 1.5rem;
    }

    .recommendations .inner {
      max-width: 960px;
      margin: 0 auto;
    }

    .recommendations h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      line-height: 1.3;
    }

    .recommendations > .inner > p {
      margin: 0 0 2rem 0;
      font-size: 0.95rem;
      line-height: 1.5;
      color: var(--muted-fg, #5a5650);
    }

    .recommendations .entries {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .recommendations .entry {
      background: var(--card-bg, #ffffff);
      border-radius: 8px;
      padding: 1.25rem 1.5rem;
      border: 1px solid var(--card-border, #e0dcd4);
    }

    .recommendations .entry h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      line-height: 1.4;
    }

    .recommendations .entry h3 a {
      color: var(--primary-bg, #0a7e7a);
      text-decoration: none;
    }

    .recommendations .entry h3 a:hover {
      text-decoration: underline;
    }

    .recommendations .entry p {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.6;
    }

.messages {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }

    .messages .inner {
      max-width: 720px;
      margin: 0 auto;
    }

    .messages .title {
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0 0 0.35rem 0;
      line-height: 1.2;
    }

    .messages .subtitle {
      font-size: 0.95rem;
      margin: 0 0 2rem 0;
      color: #5a5650;
      line-height: 1.5;
    }

    .messages .list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .messages .entry {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .messages .meta {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.85rem;
    }

    .messages .initials {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      background: var(--brand-primary-bg, #0a7e7a);
      color: var(--brand-primary-fg, #ffffff);
      font-weight: 600;
      font-size: 0.75rem;
      flex-shrink: 0;
    }

    .messages .name {
      font-weight: 600;
      color: #2b2824;
    }

    .messages .time {
      color: #7a756e;
      margin-left: auto;
      white-space: nowrap;
    }

    .messages .body {
      padding-left: 2.6rem;
    }

    .messages .text {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.6;
      color: #3d3a35;
    }

    @media (max-width: 480px) {
      .messages {
        padding: 2rem 1rem;
      }

      .messages .body {
        padding-left: 0;
      }

      .messages .meta {
        flex-wrap: wrap;
      }

      .messages .time {
        margin-left: 0;
      }
    }

.clarifications {
      background: var(--page-bg, #fcfaf7);
      color: var(--page-fg, #1a1816);
      padding: 3rem 1.5rem;
    }
    .clarifications .inner {
      max-width: 760px;
      margin: 0 auto;
    }
    .clarifications h2 {
      font-size: 1.5rem;
      font-weight: 600;
      line-height: 1.3;
      margin: 0 0 1.25rem;
      letter-spacing: -0.01em;
    }
    .clarifications p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1rem;
    }
    .clarifications p:last-of-type {
      margin-bottom: 0;
    }
    /* лёгкий акцент на ключевых словах — без жирного, только цвет */
    .clarifications p:first-of-type {
      color: #3d2b1f;
    }
    .clarifications p:last-of-type {
      color: #1a1816;
    }
    /* разделение абзацев за счёт отступа и тонкой линии */
    .clarifications p + p {
      margin-top: 1.25rem;
      padding-top: 1.25rem;
      border-top: 1px solid #e0dcd4;
    }
    @media (min-width: 640px) {
      .clarifications {
        padding: 4rem 2rem;
      }
      .clarifications h2 {
        font-size: 1.75rem;
      }
      .clarifications p {
        font-size: 1rem;
      }
    }

.feedback {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .feedback .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .feedback h2 {
      font-size: 1.6rem;
      font-weight: 500;
      margin: 0 0 0.75rem;
      line-height: 1.3;
      color: var(--page-fg);
    }
    .feedback .note {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0 0 2rem;
      color: var(--page-fg);
      opacity: 0.8;
    }
    .feedback .entries {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .feedback .entry {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 10px;
      padding: 1.25rem 1.5rem;
    }
    .feedback .text {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 0.5rem;
      color: var(--page-fg);
    }
    .feedback .meta {
      font-size: 0.85rem;
      color: var(--page-fg);
      opacity: 0.65;
      margin: 0;
    }

.stay-in-touch {
      background: var(--page-bg, #fcfaf7);
      color: var(--page-fg, #1a1816);
      padding: 3rem 1.5rem;
    }

    .stay-in-touch .inner {
      max-width: 640px;
      margin: 0 auto;
    }

    .stay-in-touch .title {
      font-size: 1.75rem;
      font-weight: 500;
      line-height: 1.2;
      margin: 0 0 1rem 0;
      letter-spacing: -0.01em;
    }

    .stay-in-touch .desc {
      font-size: 1rem;
      line-height: 1.55;
      margin: 0 0 1.75rem 0;
      color: var(--muted-fg, #1a1816);
    }

    .stay-in-touch .form {
      border-top: 1px solid var(--card-border, #e0dcd4);
      padding-top: 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .stay-in-touch .field {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .stay-in-touch .field label {
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      color: var(--muted-fg, #1a1816);
    }

    .stay-in-touch .field input,
    .stay-in-touch .field select {
      
      font-size: 0.95rem;
      padding: 0.6rem 0.75rem;
      border: 1px solid var(--card-border, #e0dcd4);
      border-radius: 6px;
      background: var(--card-bg, #ffffff);
      color: var(--card-fg, #1a1816);
      transition: border-color 0.15s ease;
    }

    .stay-in-touch .field input:focus,
    .stay-in-touch .field select:focus {
      outline: none;
      border-color: var(--brand-primary-bg, #0a7e7a);
      box-shadow: 0 0 0 2px rgba(10, 126, 122, 0.15);
    }

    .stay-in-touch .field input::placeholder {
      color: var(--muted-fg, #1a1816);
      opacity: 0.5;
    }

    .stay-in-touch .submit-btn {
      
      font-size: 1rem;
      font-weight: 500;
      padding: 0.7rem 1.5rem;
      border: none;
      border-radius: 6px;
      background: var(--brand-primary-bg, #0a7e7a);
      color: var(--brand-primary-fg, #ffffff);
      cursor: pointer;
      transition: background 0.15s ease;
      align-self: flex-start;
    }

    .stay-in-touch .submit-btn:hover {
      background: var(--brand-primary-hover, #086662);
    }

    .stay-in-touch .footnote {
      font-size: 0.85rem;
      line-height: 1.5;
      margin: 1.5rem 0 0 0;
      color: var(--muted-fg, #1a1816);
      border-top: 1px solid var(--card-border, #e0dcd4);
      padding-top: 1.25rem;
    }

.support {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .support .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .support h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 0.75rem 0;
      letter-spacing: -0.01em;
    }
    .support > .inner > p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2rem 0;
      max-width: 680px;
    }
    .support .channels {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1.5rem;
    }
    .support .channel {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 8px;
      padding: 1.5rem;
    }
    .support .channel h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
    }
    .support .channel p {
      font-size: 0.925rem;
      line-height: 1.55;
      margin: 0 0 0.75rem 0;
    }
    .support .faq-link {
      display: inline-block;
      background: var(--accent-bg);
      color: var(--accent-fg);
      padding: 0.4rem 1rem;
      border-radius: 6px;
      font-size: 0.9rem;
      font-weight: 500;
      text-decoration: none;
      transition: background 0.2s;
    }
    .support .faq-link:hover {
      background: var(--accent-hover);
    }
    @media (max-width: 700px) {
      .support .channels {
        grid-template-columns: 1fr;
      }
      .support h2 {
        font-size: 1.5rem;
      }
    }

.faq {
      background: var(--page-bg, #fcfaf7);
      color: var(--page-fg, #1a1816);
      padding: 3rem 1.5rem;
    }

    .faq .inner {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq .title {
      font-size: 1.75rem;
      font-weight: 600;
      line-height: 1.2;
      margin: 0 0 0.5rem 0;
      letter-spacing: -0.01em;
    }

    .faq .subtitle {
      font-size: 1rem;
      line-height: 1.5;
      margin: 0 0 2.5rem 0;
      color: var(--muted-fg, #5a5650);
    }

    .faq .items {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }

    .faq .item {
      border-bottom: 1px solid var(--card-border, #e0dcd4);
      padding-bottom: 1.75rem;
    }

    .faq .item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .faq .item-title {
      font-size: 1.1rem;
      font-weight: 600;
      line-height: 1.4;
      margin: 0 0 0.4rem 0;
      color: var(--brand-primary-bg, #0a7e7a);
    }

    .faq .item-text {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      color: var(--page-fg, #1a1816);
    }

    @media (min-width: 640px) {
      .faq {
        padding: 4rem 2rem;
      }

      .faq .title {
        font-size: 2rem;
      }

      .faq .subtitle {
        font-size: 1.1rem;
      }

      .faq .item-title {
        font-size: 1.2rem;
      }

      .faq .item-text {
        font-size: 1rem;
      }
    }

.form {
      background: #fcfaf7;
      color: #1a1816;
      padding: 3rem 1.5rem;
    }

    .form .inner {
      max-width: 640px;
      margin: 0 auto;
    }

    .form h2 {
      font-size: 1.6rem;
      font-weight: 500;
      margin: 0 0 0.75rem;
      line-height: 1.25;
    }

    .form p {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0 0 1.75rem;
      color: #4a4642;
    }

    .form .field {
      margin-bottom: 1.25rem;
    }

    .form label {
      display: block;
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 0.35rem;
      color: #1a1816;
    }

    .form input,
    .form textarea {
      display: block;
      width: 100%;
      padding: 0.65rem 0.85rem;
      font-size: 0.95rem;
      
      background: #ffffff;
      border: 1px solid #e0dcd4;
      border-radius: 6px;
      color: #1a1816;
      box-sizing: border-box;
      transition: border-color 0.2s;
    }

    .form input:focus,
    .form textarea:focus {
      outline: none;
      border-color: #0a7e7a;
    }

    .form textarea {
      resize: vertical;
      min-height: 90px;
    }

    .form button {
      display: inline-block;
      padding: 0.7rem 2rem;
      font-size: 0.95rem;
      font-weight: 500;
      
      background: #0a7e7a;
      color: #ffffff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.2s;
    }

    .form button:hover {
      background: #086662;
    }

    @media (min-width: 600px) {
      .form {
        padding: 4rem 2rem;
      }

      .form h2 {
        font-size: 1.8rem;
      }

      .form p {
        font-size: 1rem;
      }
    }

.contacts {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .contacts .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .contacts h2 {
      font-size: 1.6rem;
      font-weight: 500;
      margin: 0 0 0.75rem;
      letter-spacing: -0.01em;
    }
    .contacts .intro {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0 0 2rem;
      color: var(--muted-fg);
    }
    .contacts .body {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      margin-bottom: 2rem;
    }
    .contacts .item {
      border-bottom: 1px solid var(--muted-bg);
      padding-bottom: 1.25rem;
    }
    .contacts .item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .contacts .label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--brand-primary-bg);
      margin-bottom: 0.3rem;
    }
    .contacts address,
    .contacts p {
      font-style: normal;
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0;
    }
    .contacts a {
      color: var(--brand-primary-bg);
      text-decoration: none;
      font-size: 0.95rem;
    }
    .contacts a:hover {
      text-decoration: underline;
    }
    .contacts .closing {
      font-size: 0.9rem;
      line-height: 1.5;
      color: var(--muted-fg);
      margin: 0;
    }

.policy-items {
            background: var(--page-bg, #fcfaf7);
            color: var(--page-fg, #1a1816);
            padding: 3rem 1.5rem;
        }
        .policy-items .inner {
            max-width: 720px;
            margin: 0 auto;
        }
        .policy-items h2 {
            font-size: 1.6rem;
            font-weight: 600;
            margin: 0 0 1rem;
            line-height: 1.25;
            color: var(--brand-primary-bg, #0a7e7a);
        }
        .policy-items h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 2rem 0 0.75rem;
            line-height: 1.3;
            padding-top: 1.5rem;
            border-top: 1px solid var(--card-border, #e0dcd4);
        }
        .policy-items p {
            font-size: 0.95rem;
            line-height: 1.65;
            margin: 0 0 1rem;
        }
        .policy-items a {
            color: var(--brand-accent-bg, #d4a373);
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .policy-items a:hover {
            color: var(--brand-accent-hover, #c48f5e);
        }
        @media (max-width: 600px) {
            .policy-items {
                padding: 2rem 1rem;
            }
            .policy-items h2 {
                font-size: 1.35rem;
            }
            .policy-items h3 {
                font-size: 1.05rem;
            }
            .policy-items p {
                font-size: 0.9rem;
            }
        }

.terms-items {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .terms-items .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .terms-items h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 1.25rem;
      line-height: 1.3;
      letter-spacing: -0.01em;
    }
    .terms-items p {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0 0 1.1rem;
    }
    .terms-items p:last-child {
      margin-bottom: 0;
    }
    @media (min-width: 640px) {
      .terms-items {
        padding: 4rem 2rem;
      }
      .terms-items h2 {
        font-size: 1.75rem;
      }
      .terms-items p {
        font-size: 1rem;
      }
    }

.thank {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .thank .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .thank h2 {
      font-size: 1.6rem;
      font-weight: 500;
      line-height: 1.3;
      margin: 0 0 1.5rem 0;
      letter-spacing: -0.01em;
    }
    .thank p {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0 0 1.2rem 0;
    }
    .thank p:last-of-type {
      margin-bottom: 0;
    }
    .thank a {
      color: var(--primary-bg, #0a7e7a);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .thank a:hover {
      color: var(--primary-hover, #086662);
    }
    @media (min-width: 600px) {
      .thank {
        padding: 4rem 2rem;
      }
      .thank h2 {
        font-size: 1.8rem;
      }
      .thank p {
        font-size: 1rem;
      }
    }

.not-found {
      background: var(--page-bg, #fcfaf7);
      color: var(--page-fg, #1a1816);
      padding: 5rem 1.5rem;
      
    }
    .not-found .inner {
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
    }
    .not-found h2 {
      font-size: 2.2rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin: 0 0 1rem 0;
      color: var(--brand-primary-bg, #0a7e7a);
    }
    .not-found p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1.5rem 0;
      color: var(--page-fg, #1a1816);
    }
    .not-found .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: center;
      margin-top: 0.25rem;
    }
    .not-found .actions a {
      display: inline-block;
      padding: 0.6rem 1.6rem;
      border-radius: 40px;
      font-size: 0.95rem;
      font-weight: 500;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
      line-height: 1.4;
    }
    .not-found .actions .primary-link {
      background: var(--brand-primary-bg, #0a7e7a);
      color: var(--brand-primary-fg, #ffffff);
    }
    .not-found .actions .primary-link:hover {
      background: var(--brand-primary-hover, #086662);
    }
    .not-found .actions .secondary-link {
      background: var(--accent-bg, #d4a373);
      color: var(--accent-fg, #3d2b1f);
    }
    .not-found .actions .secondary-link:hover {
      background: var(--accent-hover, #c48f5e);
    }
    @media (max-width: 480px) {
      .not-found {
        padding: 3rem 1.2rem;
      }
      .not-found h2 {
        font-size: 1.7rem;
      }
      .not-found .actions a {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
      }
    }

.404 {
  background: var(--page-bg);
  color: var(--page-fg);
  padding: var(--space-section-y) var(--space-section-x);
}
.404 .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: var(--space-card);
}
.404 h2,
.404 p {
  margin: 0;
}
.404 h2 {
  font-size: var(--font-size-h2);
  line-height: 1.08;
}
.404 p {
  max-width: 62ch;
  font-size: var(--font-size-lg);
}