/* ===== Variables ===== */
:root {
  --blue-50:  #f0f6fc;
  --blue-100: #dceaf7;
  --blue-200: #b8d4ef;
  --blue-300: #85b5e0;
  --blue-400: #4d90c9;
  --blue-500: #2d72ae;
  --blue-600: #1e5690;
  --blue-700: #164070;
  --blue-800: #0f2d52;
  --blue-900: #0a1f3d;

  --logo-navy: #1a2b4c;

  --yellow-400: #ffe066;
  --yellow-500: #ffc107;
  --yellow-600: #f5a800;

  --white: #ffffff;
  --gray-50:  var(--blue-50);
  --gray-100: var(--blue-100);
  --gray-200: var(--blue-200);
  --gray-500: #5a7a96;
  --gray-700: var(--blue-700);
  --gray-900: var(--blue-900);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(10, 31, 61, 0.07);
  --shadow-md: 0 8px 24px rgba(10, 31, 61, 0.11);
  --shadow-lg: 0 16px 48px rgba(10, 31, 61, 0.14);

  --transition: 0.25s ease;
  --container: 1160px;
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--blue-50);
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

body.has-mobile-bar {
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 0));
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a, button {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--blue-900);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn--primary {
  background: var(--yellow-500);
  color: var(--blue-900);
  box-shadow: 0 4px 16px rgba(255, 193, 7, 0.4);
}

.btn--primary:hover {
  background: var(--yellow-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.5);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn--outline {
  background: transparent;
  color: var(--blue-800);
  border: 2px solid var(--blue-400);
  box-shadow: none;
}

.btn--outline:hover {
  background: var(--white);
  border-color: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.65);
  box-shadow: none;
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn--full {
  width: 100%;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--logo-navy);
  border-bottom: 2px solid var(--yellow-500);
  box-shadow: 0 4px 20px rgba(10, 31, 61, 0.25);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo img {
  height: 44px;
  width: auto;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--yellow-500);
}

.header__phone {
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  transition: color var(--transition);
}

.header__phone:hover {
  color: var(--yellow-500);
}

.nav__cta {
  color: var(--yellow-500) !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 64px;
  background: linear-gradient(160deg, var(--blue-50) 0%, var(--blue-100) 50%, #c8dff5 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 193, 7, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 5% 85%, rgba(45, 114, 174, 0.12) 0%, transparent 40%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero__content {
  max-width: 680px;
}

.hero__badge {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--logo-navy), var(--blue-700));
  color: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid var(--blue-500);
  box-shadow: 0 2px 12px rgba(26, 43, 76, 0.2);
}

.hero__badge strong {
  color: var(--yellow-500);
  font-weight: 800;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--blue-700);
  margin-bottom: 20px;
  line-height: 1.7;
}

.hero__bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 28px;
}

.hero__bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue-800);
}

.hero__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow-500);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__actions .btn {
  min-height: 52px;
  min-width: 160px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero__stat {
  background: var(--white);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.hero__stat strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--yellow-600);
  margin-bottom: 4px;
}

.hero__stat span {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ===== Lead Form (конверсия для рекламы) ===== */
.lead-form {
  padding: 48px 0 56px;
  background: var(--white);
  border-bottom: 1px solid var(--blue-200);
  scroll-margin-top: 72px;
}

.lead-form__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  background: linear-gradient(135deg, var(--blue-50), var(--white));
  border: 2px solid var(--blue-200);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
}

.lead-form__title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 12px;
  line-height: 1.25;
}

.lead-form__text {
  color: var(--gray-500);
  margin-bottom: 20px;
  line-height: 1.65;
}

.lead-form__trust {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.lead-form__trust li {
  padding-left: 24px;
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-800);
}

.lead-form__trust li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow-600);
  font-weight: 800;
}

.lead-form__wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #25a244;
  transition: opacity var(--transition);
}

.lead-form__wa:hover {
  opacity: 0.8;
}

.order-form--inline {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--blue-200);
}

.order-form__success {
  text-align: center;
  font-weight: 700;
  color: var(--blue-700);
  padding: 12px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--blue-300);
}

/* ===== Advantages ===== */
.advantages {
  padding: 80px 0;
  background: var(--white);
  scroll-margin-top: 72px;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.advantage-card {
  background: var(--blue-50);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--blue-200);
  transition: transform var(--transition), box-shadow var(--transition);
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.advantage-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.advantage-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--yellow-500);
}

.advantage-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 10px;
  line-height: 1.3;
}

.advantage-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== Services Gallery ===== */
.services {
  padding: 80px 0;
  background: var(--blue-100);
  scroll-margin-top: 72px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--blue-200);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--blue-800);
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  pointer-events: none;
  background: var(--blue-800);
}

.service-card__image.is-error {
  display: none;
}

.service-card__media.is-image-error {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
}

.service-card:hover .service-card__image {
  transform: scale(1.05);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(10, 31, 61, 0.85) 0%, rgba(10, 31, 61, 0.15) 50%, transparent 100%);
  pointer-events: none;
}

.service-card__overlay h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}

.service-card__text {
  padding: 14px 16px 18px;
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .service-card__image {
    transition: none;
  }

  .service-card:hover .service-card__image {
    transform: none;
  }
}

/* ===== Reviews ===== */
.reviews {
  padding: 80px 0;
  background: var(--white);
  scroll-margin-top: 72px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--blue-50);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--blue-200);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card__stars {
  color: var(--yellow-600);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-card blockquote p {
  font-size: 0.95rem;
  color: var(--blue-700);
  line-height: 1.7;
  font-style: italic;
}

.review-card footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--blue-200);
}

.review-card footer strong {
  display: block;
  font-size: 0.95rem;
  color: var(--blue-900);
  margin-bottom: 2px;
}

.review-card footer span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 0;
  background: var(--blue-100);
  scroll-margin-top: 72px;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq__item[open] {
  border-color: var(--blue-400);
  background: var(--blue-50);
}

.faq__item summary {
  padding: 20px 24px;
  font-weight: 700;
  color: var(--blue-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--yellow-500);
  color: var(--blue-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform var(--transition);
}

.faq__item[open] summary::after {
  content: '−';
  background: var(--blue-700);
  color: var(--white);
}

.faq__item p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== CTA ===== */
.cta {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
}

.cta__inner {
  text-align: center;
}

.cta__inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cta__inner p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta__actions .btn {
  min-height: 52px;
  min-width: 180px;
}

/* ===== Footer ===== */
.footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 56px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__brand img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  border-radius: 6px;
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--yellow-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer__contacts address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
}

.footer__contacts a {
  transition: color var(--transition);
}

.footer__contacts a:hover {
  color: var(--yellow-400);
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  background: var(--yellow-500);
  color: var(--blue-900);
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.footer__bottom p {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__bottom a:hover {
  color: var(--yellow-400);
}

/* ===== Mobile Sticky Bar ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0));
  background: var(--logo-navy);
  border-top: 2px solid var(--yellow-500);
  box-shadow: 0 -4px 24px rgba(10, 31, 61, 0.3);
  gap: 10px;
}

.mobile-bar__call,
.mobile-bar__order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition);
}

.mobile-bar__call {
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.mobile-bar__call svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mobile-bar__call:active,
.mobile-bar__order:active {
  transform: scale(0.98);
}

.mobile-bar__order {
  flex: 1.2;
  background: var(--yellow-500);
  color: var(--blue-900);
}

/* ===== Order Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 61, 0.55);
  backdrop-filter: blur(4px);
}

.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--blue-200);
  transform: translateY(16px) scale(0.98);
  transition: transform var(--transition);
}

.modal.is-open .modal__dialog {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--blue-100);
  color: var(--blue-700);
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.modal__close:hover {
  background: var(--blue-200);
  color: var(--blue-900);
}

.modal__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 8px;
}

.modal__subtitle {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.5;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.order-form__field span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-800);
}

.order-form__field input {
  padding: 14px 16px;
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--blue-900);
  background: var(--blue-50);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.order-form__field input:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(45, 114, 174, 0.15);
}

.order-form__field input:invalid:not(:placeholder-shown) {
  border-color: #c0392b;
}

.order-form__note {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.modal__success {
  text-align: center;
}

.modal__success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  color: var(--yellow-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages__grid .advantage-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .lead-form__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 24px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .header__inner {
    height: 64px;
  }

  .logo img {
    height: 36px;
  }

  .header__phone--desktop {
    display: none;
  }

  .header__menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--logo-navy);
    padding: 20px 16px;
    gap: 16px;
    border-bottom: 2px solid var(--yellow-500);
    box-shadow: var(--shadow-md);
    z-index: 99;
  }

  .header.nav-open .header__menu {
    display: flex;
  }

  .nav {
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }

  .nav a {
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav__cta {
    margin-top: 8px;
    text-align: center;
    padding: 14px !important;
    background: var(--yellow-500);
    color: var(--blue-900) !important;
    border-radius: 50px;
    border: none !important;
  }

  .burger {
    display: flex;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding: 40px 0 32px;
  }

  .hero__inner {
    gap: 32px;
  }

  .hero__bullets {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .hero__stat {
    padding: 16px 8px;
  }

  .hero__stat strong {
    font-size: 1.25rem;
  }

  .hero__stat span {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .lead-form {
    padding: 32px 0 40px;
  }

  .lead-form__inner {
    padding: 24px 16px;
  }

  .order-form--inline {
    padding: 20px 16px;
  }

  .order-form__field input {
    font-size: 16px;
    min-height: 48px;
  }

  .advantages__grid {
    grid-template-columns: 1fr;
  }

  .advantages__grid .advantage-card:nth-child(5) {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card__media {
    height: 180px;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card {
    padding: 24px 20px;
  }

  .faq__item summary {
    padding: 16px;
    font-size: 0.9rem;
  }

  .faq__item p {
    padding: 0 16px 16px;
  }

  .cta {
    padding: 48px 0 calc(48px + env(safe-area-inset-bottom, 0));
  }

  .cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__brand p {
    max-width: 100%;
  }

  .advantages,
  .services,
  .reviews,
  .faq {
    padding: 48px 0;
  }

  .section-subtitle {
    margin-bottom: 28px;
    font-size: 0.95rem;
  }

  .mobile-bar {
    display: flex;
  }

  .btn {
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.65rem;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }

  .hero__stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 14px 18px;
  }

  .hero__stat strong {
    font-size: 1.35rem;
    margin-bottom: 0;
  }

  .modal__dialog {
    padding: 32px 20px 24px;
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
  }

  .modal {
    align-items: flex-end;
    padding: 0;
  }

  .modal__dialog {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-width: 100%;
  }
}

@media (min-width: 769px) {
  .header__menu {
    display: flex !important;
  }
}
