/* Reset & base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #2c2c2c;
  line-height: 1.5;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Variables */
:root {
  --accent: #6ba3c7;
  --accent-light: #8fc4e0;
  --text: #2c2c2c;
  --text-muted: #6b6b6b;
  --grey-light: #e8e8e8;
  --grey-circle: #d0d0d0;
  --footer-bg: #2d2d2d;
  --white: #ffffff;
  --gradient-hero-start: #d4e8f2;
  --gradient-hero-end: #eaecee;
  --gradient-advantages-start: #f5f2ee;
  --gradient-advantages-end: #ebecee;
  --box-blue: #5a9bc4;
}

/* Top Navigation Bar */
.nav {
  background: var(--white);
  width: 100%;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 4px;
}

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

.nav-link.active {
  color: var(--accent);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  width: 110%;
  margin-left: -5%;
}

/* Hero Section */
.hero {
  background: linear-gradient(90deg, var(--gradient-hero-start) 0%, var(--gradient-hero-end) 55%, var(--gradient-hero-end) 100%);
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content {
  flex: 0 1 520px;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 420px;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.hero-image-wrap {
  flex: 0 0 420px;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-image {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Services Section */
.services {
  background: var(--white);
  width: 100%;
  padding: 80px 40px 100px;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 56px;
}

.services-grid {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: flex-start;
}

.service-block {
  flex: 1;
  max-width: 320px;
  text-align: center;
}

.service-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
}

.service-icon-circle {
  width: 88px;
  height: 88px;
  border: 1.5px solid var(--grey-circle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.service-num {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-heading {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.35;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Advantages Section */
.advantages {
  background: linear-gradient(90deg, var(--gradient-advantages-start) 0%, var(--gradient-advantages-end) 100%);
  width: 100%;
  padding: 80px 40px 88px;
}

.advantages-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.advantages-left {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.advantage-block {
  position: relative;
}

.advantage-heading {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.advantage-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.advantages-right {
  flex: 0 1 380px;
  display: flex;
  justify-content: flex-end;
}

.advantages-box {
  background: var(--box-blue);
  border-radius: 8px;
  padding: 28px 32px 32px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 2px 12px rgba(90, 155, 196, 0.25);
}

.advantages-box-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.advantages-list {
  list-style: none;
}

.advantages-list li {
  font-size: 0.875rem;
  color: var(--white);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.advantages-list li:last-child {
  margin-bottom: 0;
}

.check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  position: relative;
  margin-top: 2px;
}

.check::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid rgba(255, 255, 255, 0.95);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* About Section */
.about {
  background: var(--white);
  width: 100%;
  padding: 80px 40px 100px;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.about-image-wrap {
  flex: 0 0 460px;
}

.about-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.about-content {
  flex: 1;
  min-width: 0;
}

.about-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-desc:last-of-type {
  margin-bottom: 28px;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.signature-svg {
  width: 100px;
  height: 36px;
  color: var(--text);
}

.signature-text {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: var(--footer-bg);
  width: 100%;
  padding: 56px 40px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  padding-bottom: 40px;
}

.footer-col {
  flex: 1;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin-bottom: 6px;
}

.footer-text a {
  color: var(--accent-light);
}

.footer-text a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0 28px;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.8125rem;
}

.footer-bottom-inner a {
  color: var(--accent-light);
}

.footer-bottom-inner a:hover {
  text-decoration: underline;
}

.footer-sep {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 8px;
}

/* ========== About Page ========== */

.page-title-strip {
  background: var(--grey-light);
  width: 100%;
  padding: 24px 0;
}

.page-title-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-title-heading {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text);
}

.breadcrumbs {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--text);
}

.breadcrumbs-sep {
  margin: 0 6px;
  color: var(--text-muted);
}

.breadcrumbs-current {
  color: var(--text-muted);
}

.about-page-intro {
  background: var(--white);
  width: 100%;
  padding: 56px 40px 48px;
}

.about-page-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about-page-main-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  max-width: 720px;
  margin: 0 auto;
}

.about-page-content {
  background: var(--white);
  width: 100%;
  padding: 0 40px 80px;
}

.about-page-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.about-page-image-col {
  flex: 0 0 400px;
}

.about-page-portrait {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.about-page-text-col {
  flex: 1;
  min-width: 0;
}

.about-page-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.about-page-p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-page-checklist {
  list-style: none;
  margin: 28px 0 32px;
}

.about-page-checklist li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.about-page-checklist li:last-child {
  margin-bottom: 0;
}

.about-page-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: #e8e8e8;
  border-radius: 3px;
  position: relative;
  margin-top: 2px;
}

.about-page-check::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid var(--text);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.about-page-education {
  margin-top: 36px;
  position: relative;
}

.about-page-education-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.about-page-signature-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.about-page-signature {
  width: 100px;
  height: 36px;
  color: var(--accent);
}

.about-stats {
  background: var(--grey-light);
  width: 100%;
  padding: 56px 40px 64px;
}

.about-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 80px;
  align-items: flex-start;
}

.about-stat {
  text-align: center;
  flex: 0 0 auto;
}

.about-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.4;
}

/* ========== Services Page ========== */

.services-page-intro {
  background: var(--white);
  width: 100%;
  padding: 56px 40px 48px;
}

.services-page-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-page-main-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin: 0;
}

.services-page-content {
  background: var(--white);
  width: 100%;
  padding: 0 40px 80px;
}

.services-page-content-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-page-block {
  margin-bottom: 72px;
}

.services-page-block:last-child {
  margin-bottom: 0;
}

.services-page-block-left {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.services-page-icon-wrap {
  position: relative;
  flex-shrink: 0;
}

.services-page-icon-circle {
  width: 88px;
  height: 88px;
  border: 1.5px solid var(--grey-circle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.services-page-icon {
  width: 40px;
  height: 40px;
  color: var(--text);
}

.services-page-num {
  position: absolute;
  bottom: -8px;
  right: -4px;
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-page-text {
  flex: 1;
  min-width: 0;
}

.services-page-block-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.services-page-desc {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 14px;
}

.services-page-desc:last-child {
  margin-bottom: 0;
}

.services-page-block-center {
  position: relative;
  padding-right: 120px;
}

.services-page-center-text {
  max-width: 640px;
  text-align: center;
  margin: 0 auto;
}

.services-page-block-center .services-page-block-title {
  margin-bottom: 20px;
}

.services-page-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.services-page-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey-circle);
}

.services-page-dot-active {
  background: var(--accent);
}

.services-page-decor-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
}

.services-page-block-center .services-page-icon-circle {
  width: 88px;
  height: 88px;
}

.services-page-block-center .services-page-icon {
  width: 40px;
  height: 40px;
  color: var(--text);
}

/* ========== FAQ Page ========== */

.faq-section {
  background: var(--white);
  width: 100%;
  padding: 56px 40px 80px;
}

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

.faq-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  border-top: 1px solid var(--grey-light);
}

.faq-item {
  border-bottom: 1px solid var(--grey-light);
}

.faq-item-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.faq-item-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e8e8e8;
  color: var(--accent);
  font-size: 0.9375rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item-open .faq-item-num {
  background: var(--accent);
  color: var(--white);
}

.faq-item-question {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  min-width: 0;
}

.faq-item-open .faq-item-question {
  color: var(--accent);
}

.faq-item-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #e8e8e8;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text);
  position: relative;
}

.faq-icon-plus,
.faq-icon-minus {
  position: absolute;
}

.faq-item-open .faq-icon-plus {
  opacity: 0;
}

.faq-item-open .faq-icon-minus {
  opacity: 1;
}

.faq-item:not(.faq-item-open) .faq-icon-plus {
  opacity: 1;
}

.faq-item:not(.faq-item-open) .faq-icon-minus {
  opacity: 0;
}

.faq-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item-open .faq-item-body {
  max-height: 400px;
}

.faq-item-inner {
  padding: 0 0 24px 52px;
}

.faq-item-answer {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ========== Contacts Page ========== */

.contacts-intro {
  background: var(--white);
  width: 100%;
  padding: 56px 40px 48px;
}

.contacts-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contacts-main-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.contacts-subtitle {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

.contacts-office {
  background: var(--white);
  width: 100%;
  padding: 0 40px 48px;
}

.contacts-office-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contacts-office-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.contacts-office-block {
  margin: 0;
}

.contacts-office-line {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 6px;
}

.contacts-office-line:last-child {
  margin-bottom: 0;
}

.contacts-office-highlight {
  font-weight: 700;
  color: var(--accent);
}

.contacts-office-highlight:hover {
  text-decoration: underline;
}

.contacts-form-section {
  background: #f5f5f5;
  width: 100%;
  padding: 56px 40px 72px;
}

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

.contacts-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 32px;
}

.contacts-form {
  max-width: 720px;
  margin: 0 auto;
}

.contacts-form-row {
  display: flex;
  gap: 20px;
}

.contacts-form-row.contacts-form-three {
  margin-bottom: 24px;
}

.contacts-form-col {
  flex: 1;
  min-width: 0;
}

.contacts-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.contacts-input,
.contacts-textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--grey-circle);
  border-radius: 4px;
  padding: 10px 12px;
}

.contacts-input:focus,
.contacts-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contacts-input::placeholder,
.contacts-textarea::placeholder {
  color: var(--text-muted);
}

.contacts-textarea {
  resize: vertical;
  min-height: 120px;
}

.contacts-form-field {
  margin-bottom: 28px;
}

.contacts-form-field .contacts-form-label {
  margin-bottom: 6px;
}

.contacts-form-submit-wrap {
  text-align: center;
}

.contacts-submit {
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  border: none;
  border-radius: 4px;
  padding: 12px 32px;
  cursor: pointer;
}

.contacts-submit:hover {
  background: var(--box-blue);
}

.contacts-submit:focus {
  outline: none;
}

.contacts-input.error,
.contacts-textarea.error {
  border-color: #c44;
}

/* ========== Legal / Privacy Policy Page ========== */

.legal-content {
  background: var(--white);
  width: 100%;
  padding: 48px 40px 80px;
}

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

.legal-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 14px;
  line-height: 1.35;
}

.legal-content-inner .legal-heading:first-child {
  margin-top: 0;
}

.legal-content-inner p {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 14px;
}

.legal-content-inner p:last-child {
  margin-bottom: 0;
}

.legal-intro {
  margin-bottom: 14px;
}

.legal-link {
  color: var(--accent);
  text-decoration: underline;
}

.legal-link:hover {
  color: var(--box-blue);
}

.legal-subheading {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.legal-content-inner .legal-subheading:first-of-type {
  margin-top: 0;
}

.legal-list {
  list-style: none;
  margin: 0 0 14px 0;
  padding: 0;
}

.legal-list li {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 8px;
  padding-left: 1.2em;
  position: relative;
}

.legal-list li::before {
  content: '–';
  position: absolute;
  left: 0;
}

.legal-list li:last-child {
  margin-bottom: 0;
}

/* ========== Burger menu (mobile) ========== */

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.nav-burger:hover {
  background: var(--grey-light);
  color: var(--text);
}

.nav-burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-burger[aria-expanded="true"] .nav-burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-burger[aria-expanded="true"] .nav-burger-line:nth-child(2) {
  opacity: 0;
}

.nav-burger[aria-expanded="true"] .nav-burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ========== Mobile layout ========== */

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

  .nav-inner {
    padding: 16px 20px;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 100;
    padding: 80px 24px 24px;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-open .nav-links .nav-link {
    font-size: 1.125rem;
    padding: 8px 0;
  }

  .nav-open .nav-links .nav-link.active::after {
    width: 100%;
    margin-left: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    flex-direction: column;
    padding: 40px 20px 48px;
    gap: 32px;
  }

  .hero-content {
    flex: none;
    text-align: center;
  }

  .hero-title {
    font-size: 1.75rem;
    max-width: none;
    margin-bottom: 12px;
  }

  .hero-image-wrap {
    flex: none;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-image {
    max-width: 100%;
  }

  .services {
    padding: 48px 20px 64px;
  }

  .services-title {
    font-size: 1.25rem;
    margin-bottom: 36px;
  }

  .services-grid {
    flex-direction: column;
    gap: 36px;
    align-items: center;
  }

  .service-block {
    max-width: 100%;
  }

  .advantages {
    padding: 48px 20px 56px;
  }

  .advantages-inner {
    flex-direction: column;
    gap: 40px;
  }

  .advantages-left {
    flex: none;
  }

  .advantages-right {
    flex: none;
    justify-content: center;
  }

  .advantages-box {
    max-width: 100%;
  }

  .about {
    padding: 48px 20px 64px;
  }

  .about-inner {
    flex-direction: column;
    gap: 32px;
  }

  .about-image-wrap {
    flex: none;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .footer {
    padding: 40px 20px 0;
  }

  .footer-inner {
    flex-direction: column;
    gap: 28px;
    padding-bottom: 32px;
  }

  .page-title-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 0 20px;
  }

  .page-title-strip {
    padding: 20px 0;
  }

  .page-title-heading {
    font-size: 1.25rem;
  }

  .breadcrumbs {
    font-size: 0.8125rem;
  }

  .about-page-intro,
  .about-page-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-page-intro {
    padding-top: 40px;
    padding-bottom: 32px;
  }

  .about-page-main-heading {
    font-size: 1.375rem;
  }

  .about-page-content {
    padding-bottom: 48px;
  }

  .about-page-content-inner {
    flex-direction: column;
    gap: 32px;
  }

  .about-page-image-col {
    flex: none;
    max-width: 100%;
  }

  .about-stats {
    padding: 40px 20px 48px;
  }

  .about-stats-inner {
    flex-direction: column;
    gap: 40px;
  }

  .about-stat-number {
    font-size: 2rem;
  }

  .services-page-intro {
    padding: 40px 20px 32px;
  }

  .services-page-main-heading {
    font-size: 1.375rem;
  }

  .services-page-content {
    padding: 0 20px 48px;
  }

  .services-page-block {
    margin-bottom: 48px;
  }

  .services-page-block-left {
    flex-direction: column;
    gap: 20px;
  }

  .services-page-block-center {
    padding-right: 0;
  }

  .services-page-decor-icon {
    position: static;
    transform: none;
    margin-top: 16px;
  }

  .faq-section {
    padding: 40px 20px 56px;
  }

  .faq-item-header {
    padding: 16px 0;
    gap: 12px;
  }

  .faq-item-inner {
    padding: 0 0 20px 40px;
  }

  .faq-item-question {
    font-size: 0.9375rem;
  }

  .contacts-intro {
    padding: 40px 20px 32px;
  }

  .contacts-main-heading {
    font-size: 1.375rem;
  }

  .contacts-office {
    padding: 0 20px 32px;
  }

  .contacts-form-section {
    padding: 40px 20px 56px;
  }

  .contacts-form-row {
    flex-direction: column;
    gap: 16px;
  }

  .legal-content {
    padding: 32px 20px 56px;
  }

  .legal-heading {
    font-size: 1rem;
  }
}
