@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-strong: #edf5ff;
  --ink: #182230;
  --muted: #5d6b82;
  --line: #dde6f2;
  --brand: #1b66d8;
  --brand-dark: #103d80;
  --accent: #18a77a;
  --warning: #fff4d8;
  --shadow: 0 18px 55px rgba(16, 24, 40, 0.1);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img,
svg {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(860px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(217, 226, 239, 0.8);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  flex-shrink: 0;
  display: block;
  width: 44px;
  height: 44px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.main-nav a {
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  padding: 10px 14px;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--surface-strong);
  color: var(--brand-dark);
}

.city-picker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  padding: 8px 14px 8px 10px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.city-picker:hover {
  border-color: rgba(27, 102, 216, 0.35);
  background: var(--surface-strong);
}

.city-picker__icon {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(27, 102, 216, 0.1);
  color: var(--brand);
}

.city-picker__value {
  overflow: hidden;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-phone {
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  padding: 10px 16px;
}

.city-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
}

.city-modal.is-open {
  display: grid;
}

.city-modal[hidden] {
  display: none !important;
}

.city-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 26, 58, 0.52);
  cursor: pointer;
}

.city-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(16, 24, 40, 0.22);
  padding: 28px 28px 24px;
}

.city-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.city-modal__close:hover {
  border-color: rgba(27, 102, 216, 0.35);
  color: var(--brand-dark);
}

.city-modal__title {
  margin: 0 40px 8px 0;
  font-size: 24px;
  line-height: 1.2;
}

.city-modal__lead {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.city-modal__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.city-modal__option {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fbff, #fff);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.city-modal__option:hover {
  border-color: rgba(27, 102, 216, 0.35);
  background: var(--surface-strong);
}

.city-modal__option.is-selected {
  border-color: rgba(27, 102, 216, 0.45);
  background: linear-gradient(135deg, #eef5ff, #fff);
  color: var(--brand-dark);
}

body.city-modal-open {
  overflow: hidden;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section {
  padding: 88px 0;
}

.section-accent {
  background:
    radial-gradient(circle at 82% 8%, rgba(24, 167, 122, 0.18), transparent 28%),
    radial-gradient(circle at 12% 2%, rgba(27, 102, 216, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
}

.hero {
  overflow: hidden;
  padding: 88px 0 70px;
}

.hero-grid,
.two-columns,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(28px, 3.7vw, 46px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(23px, 2.45vw, 32px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.005em;
}

.hero-lead,
.page-hero p,
.section-head p,
.cta-card p {
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  padding: 0 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #2d7df0, #1855b8);
  box-shadow: 0 10px 24px rgba(20, 99, 255, 0.18);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  color: #22456f;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-facts span {
  border: 1px solid rgba(20, 99, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-dark);
  font-weight: 800;
  padding: 10px 14px;
}

.visual-card,
.info-panel,
.panel-form,
.cta-card {
  border: 1px solid rgba(217, 226, 239, 0.9);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-visual {
  min-height: 520px;
}

.visual-card {
  min-height: 420px;
  padding: 18px;
  overflow: hidden;
}

.visual-card:has(.section-image) {
  padding: 0;
}

.section-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: calc(var(--radius) - 6px);
}

.docs-section {
  padding-top: 24px;
}

.docs-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
  padding: 40px;
  border: 1px solid rgba(217, 226, 239, 0.9);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.docs-visual,
.docs-content {
  min-width: 0;
}

.docs-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.docs-preview {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(160deg, #f8fbff 0%, #eef5ff 100%);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.docs-preview:hover {
  transform: translateY(-2px);
  border-color: rgba(27, 102, 216, 0.28);
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.1);
}

.docs-preview img {
  display: block;
  width: 100%;
  max-height: 340px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.08);
  object-fit: contain;
}

.docs-preview-badge {
  position: absolute;
  left: 34px;
  bottom: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 14px;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
}

.docs-preview-hint {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.docs-content h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.2;
}

.docs-lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.docs-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.docs-list li {
  position: relative;
  padding: 14px 14px 14px 42px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fbff, #fff);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.docs-list li::before {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(27, 102, 216, 0.12);
  color: var(--brand);
  content: "✓";
  font-size: 11px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  transform: translateY(-50%);
}

.trust-strip {
  background: #081a3a;
  color: #fff;
  padding: 24px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-grid div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 18px;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.muted {
  background: #eef4ff;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.narrow {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.price-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: end;
  gap: 32px;
  max-width: none;
  width: 100%;
  margin-bottom: 34px;
}

.price-head h2 {
  margin-bottom: 0;
}

.price-head > p {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, #f8fbff, #eef5ff);
  color: var(--muted);
  font-size: 17px;
  padding: 22px;
}

.cards-grid,
.price-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card,
.price-card,
.blog-card,
.contact-card,
.delivery-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 24px;
}

.card p,
.price-card p,
.blog-card p,
.contact-card p,
.delivery-card span:not(.delivery-icon),
.text-page p,
.two-columns p {
  color: var(--muted);
}

.card-feature {
  position: relative;
  overflow: hidden;
  min-height: 210px;
}

.card-feature::after {
  position: absolute;
  right: -28px;
  top: -28px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(27, 102, 216, 0.05);
  content: "";
}

.card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.card-icon-blue {
  background: linear-gradient(135deg, #2e90fa, #155eef);
}

.card-icon-green {
  background: linear-gradient(135deg, #17b26a, #087443);
}

.card-icon-orange {
  background: linear-gradient(135deg, #f79009, #b54708);
}

.card-icon-purple {
  background: linear-gradient(135deg, #9b8afb, #6941c6);
}

.card-feature h3 {
  position: relative;
  z-index: 1;
}

.card-feature p {
  position: relative;
  z-index: 1;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  content: "✓";
  font-size: 13px;
  font-weight: 900;
}

.info-panel {
  padding: 30px;
}

.mini-feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.mini-feature span {
  color: var(--brand);
  font-weight: 900;
}

.mini-feature p {
  margin: 0;
}

.price-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  position: relative;
  overflow: hidden;
  min-height: 248px;
  padding: 24px;
  border: 1px solid rgba(221, 230, 242, 0.95);
  box-shadow: 0 14px 36px rgba(16, 24, 40, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(16, 24, 40, 0.09);
}

.price-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 58%;
  min-height: 132px;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 56px;
}

.price-card__tara {
  position: absolute;
  z-index: 1;
  top: 6px;
  right: -4px;
  width: auto;
  max-width: 68%;
  height: auto;
  max-height: 74%;
  object-fit: contain;
  object-position: right center;
  opacity: 0.74;
  filter: drop-shadow(0 6px 12px rgba(16, 24, 40, 0.12));
  pointer-events: none;
  user-select: none;
}

.price-card--drum .price-card__tara {
  top: 4px;
  right: -6px;
  max-width: 72%;
  max-height: 78%;
  opacity: 0.78;
}

.price-card--can-mini .price-card__tara {
  top: 12px;
  right: 2px;
  max-width: 54%;
  max-height: 70%;
}

.price-card--can-05 .price-card__tara {
  max-width: 44%;
  max-height: 58%;
}

.price-card--can-pack .price-card__tara {
  top: 8px;
  right: 0;
  max-width: 62%;
  max-height: 72%;
}

.price-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--brand);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  padding: 6px 13px;
}

.price-card--can-mini span,
.price-card--can-pack span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 12px;
}

.price-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.price-card p {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
}

.price-card a {
  color: var(--brand);
  font-size: 15px;
  font-weight: 800;
}

.price-card.highlighted {
  border-color: transparent;
  background: linear-gradient(148deg, #1f6ee0 0%, #1b66d8 42%, #103d80 100%);
  box-shadow: 0 22px 48px rgba(27, 102, 216, 0.26);
  color: #fff;
}

.price-card.highlighted span,
.price-card.highlighted p,
.price-card.highlighted a {
  color: #fff;
}

.price-card.highlighted span {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
}

.price-card.highlighted .price-card__tara {
  opacity: 0.58;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.delivery-card {
  position: relative;
  overflow: hidden;
  min-height: 172px;
  border: 0;
  color: #fff;
}

.delivery-card::after {
  position: absolute;
  right: -34px;
  bottom: -46px;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.delivery-card-green {
  background: linear-gradient(135deg, #17b26a, #087443);
}

.delivery-card-blue {
  background: linear-gradient(135deg, #2e90fa, #155eef);
}

.delivery-card-orange {
  background: linear-gradient(135deg, #f79009, #b54708);
}

.delivery-card-purple {
  background: linear-gradient(135deg, #9b8afb, #6941c6);
}

.delivery-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(8px);
}

.delivery-icon svg,
.delivery-icon svg path,
.delivery-icon svg circle {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.delivery-icon svg {
  width: 30px;
  height: 30px;
}

.delivery-card strong,
.delivery-card span:not(.delivery-icon) {
  position: relative;
  z-index: 1;
  display: block;
}

.delivery-card strong {
  font-size: 20px;
}

.delivery-card span:not(.delivery-icon) {
  color: rgba(255, 255, 255, 0.82);
}

.delivery-visual {
  margin: 28px 0 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(16, 24, 40, 0.08);
}

.delivery-visual .section-image {
  aspect-ratio: 16 / 9;
  min-height: 220px;
  border-radius: 22px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
  width: 100%;
}

details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 20px 24px;
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.05);
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.cta-section {
  padding-top: 24px;
  padding-bottom: 88px;
}

.cta-section .container > .cta-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: stretch;
  padding: 40px;
}

.cta-aside,
.cta-form-panel {
  min-width: 0;
}

.cta-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 100%;
  padding-right: 8px;
}

.cta-intro h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.2;
}

.cta-lead {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.cta-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cta-points li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.cta-points li::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(24, 167, 122, 0.14);
  color: var(--accent);
  content: "✓";
  font-size: 11px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
}

.cta-operator {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, #f8fbff, #eef5ff);
}

.cta-operator img {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border: 2px solid #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
  object-fit: cover;
  object-position: center top;
}

.cta-operator strong,
.cta-operator span {
  display: block;
}

.cta-operator strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.cta-operator span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.cta-form-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.cta-form-title {
  margin: 0 0 18px;
  color: var(--brand-dark);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-form-panel .lead-form {
  flex: 1;
  gap: 12px;
}

.cta-form-panel input,
.cta-form-panel textarea {
  background: var(--bg);
}

.cta-form-panel input:focus,
.cta-form-panel textarea:focus {
  border-color: rgba(27, 102, 216, 0.45);
  outline: 2px solid rgba(27, 102, 216, 0.12);
  outline-offset: 0;
}

.cta-card.compact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

.checkbox {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--muted) !important;
  font-size: 14px;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-note {
  margin: 0;
  border-radius: 16px;
  background: #e9fff6;
  color: #067647;
  font-weight: 800;
  padding: 12px 14px;
}

.page-hero {
  background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
  padding: 84px 0;
  text-align: center;
}

.page-hero h1 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.18;
}

.page-hero p {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  font-size: 17px;
  line-height: 1.65;
}

.contact-grid {
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-card span,
.blog-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--brand-dark);
  font-size: 22px;
  font-weight: 900;
}

.panel-form {
  padding: 28px;
}

.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.08);
}

.blog-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.blog-card p {
  margin-top: auto;
  font-size: 15px;
  line-height: 1.65;
}

.text-page {
  max-width: 860px;
}

.text-page h2 {
  margin-top: 36px;
  font-size: 28px;
}

.text-page a {
  color: var(--brand);
  font-weight: 900;
}

.text-page h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}

.text-page ul {
  margin: 0 0 20px;
  padding-left: 1.35em;
  color: var(--muted);
}

.text-page li {
  margin-bottom: 10px;
  line-height: 1.65;
}

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

a.blog-card {
  color: inherit;
  text-decoration: none;
}

.blog-article-back {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.blog-article-back:hover {
  text-decoration: underline;
}

.blog-article .page-hero h1,
.blog-article .page-hero p {
  max-width: none;
}

.blog-article .page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.blog-article .page-hero-meta span {
  border: 1px solid rgba(27, 102, 216, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
}

.blog-article .blog-article-section {
  padding-top: 0;
}

.blog-article .text-page {
  max-width: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 52px) clamp(24px, 4vw, 56px);
}

.blog-article .text-page > h2:first-child {
  margin-top: 0;
}

.blog-article .text-page h2 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 42px;
  margin-bottom: 18px;
  padding: 18px 22px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(27, 102, 216, 0.1) 0%, rgba(237, 245, 255, 0.65) 100%);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.25;
}

.blog-article .text-page h2::before {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(27, 102, 216, 0.14);
  content: "";
}

.blog-article .text-page h3 {
  margin-top: 26px;
  margin-bottom: 10px;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
  color: var(--brand-dark);
  font-size: 19px;
}

.blog-article .text-page h3 + p {
  margin-bottom: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.blog-article .text-page p {
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.75;
}

.blog-article .text-page ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.blog-article .text-page li {
  position: relative;
  margin: 0;
  padding: 14px 16px 14px 44px;
  border: 1px solid rgba(24, 167, 122, 0.16);
  border-radius: 16px;
  background: linear-gradient(180deg, #f3fcf8 0%, #ffffff 100%);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}

.blog-article .text-page li::before {
  position: absolute;
  top: 15px;
  left: 16px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
  content: "✓";
}

.blog-article-cta {
  padding-top: 0;
}

.blog-article-cta .container {
  width: min(1180px, calc(100% - 32px));
}

.blog-article-cta__card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #eef4ff 55%, #e9fff6 100%);
  padding: 36px 32px;
  text-align: center;
}

.blog-article-cta__card h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.2vw, 32px);
}

.blog-article-cta__card p {
  max-width: none;
  margin: 0 auto 22px;
  color: var(--muted);
}

.blog-article-cta__card .hero-actions {
  justify-content: center;
}

.site-footer {
  background: #081a3a;
  color: #fff;
  padding: 54px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 38px;
}

.site-footer p,
.site-footer span,
.site-footer small {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.86);
}

.footer-brand {
  margin-bottom: 16px;
}

.mobile-fab {
  display: none;
}

@media (max-width: 980px) {
  .mobile-fab {
    position: fixed;
    right: 14px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    z-index: 25;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    pointer-events: none;
  }

  .mobile-fab__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.16);
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    padding: 6px 14px 6px 6px;
    pointer-events: auto;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .mobile-fab__btn:active {
    transform: scale(0.97);
  }

  .mobile-fab__icon {
    display: grid;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
  }

  .mobile-fab__btn--phone .mobile-fab__icon {
    background: linear-gradient(135deg, #17b26a, #087443);
  }

  .mobile-fab__btn--max .mobile-fab__icon {
    background: linear-gradient(135deg, #5b6cff, #0077ff);
  }

  .mobile-fab__btn--telegram .mobile-fab__icon {
    background: linear-gradient(135deg, #35b3f6, #229ed9);
  }

  .mobile-fab__label {
    padding-right: 2px;
    white-space: nowrap;
  }

  body.city-modal-open .mobile-fab {
    z-index: 15;
  }

  .header-inner {
    gap: 14px;
  }

  .main-nav {
    margin-left: 0;
  }

  .city-picker {
    margin-left: auto;
    gap: 6px;
    border: 0;
    background: transparent;
    padding: 2px 4px;
    box-shadow: none;
  }

  .city-picker:hover {
    border: 0;
    background: transparent;
  }

  .city-picker__icon {
    width: 26px;
    height: 26px;
    background: transparent;
  }

  .city-picker__icon svg {
    width: 16px;
    height: 16px;
  }

  .city-picker__value {
    max-width: 92px;
    font-size: 12px;
  }

  .nav-toggle {
    display: block;
    flex-shrink: 0;
    margin-left: 0;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 12px;
  }

  .main-nav.open {
    display: flex;
  }

  .header-phone {
    display: none;
  }

  .city-modal__list {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .two-columns,
  .reverse,
  .price-head,
  .contact-grid,
  .cta-section .container > .cta-card,
  .docs-card {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .cards-grid,
  .price-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual,
  .visual-card {
    min-height: 340px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .section,
  .hero,
  .page-hero {
    padding: 58px 0;
  }

  h1 {
    font-size: 28px;
  }

  .hero-lead,
  .page-hero p,
  .section-head p,
  .cta-card p {
    font-size: 17px;
  }

  .trust-grid,
  .cards-grid,
  .price-grid,
  .delivery-grid,
  .faq-list,
  .contact-cards,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-section .container > .cta-card,
  .docs-card,
  .panel-form,
  .info-panel {
    padding: 22px;
  }

  .docs-list {
    grid-template-columns: 1fr;
  }

  .cta-form-panel {
    padding: 20px;
  }

  .cta-intro h2 {
    max-width: none;
  }

  .cta-card.compact {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .price-card {
    min-height: 228px;
  }

  .price-card__content {
    max-width: 62%;
    padding-top: 48px;
  }

  .price-card__tara {
    top: 4px;
    right: -4px;
    max-width: 60%;
    max-height: 68%;
    opacity: 0.72;
  }

  .price-card--can-05 .price-card__tara {
    max-width: 48%;
    max-height: 56%;
  }

  .blog-article .text-page {
    padding: 22px 18px;
  }

  .blog-article .text-page h2 {
    padding: 14px 16px;
    gap: 10px;
    font-size: 22px;
  }

  .blog-article .text-page h3 + p,
  .blog-article .text-page li {
    padding: 14px 16px 14px 40px;
  }
}
