:root {
  --green: #00c853;
  --green-dark: #00a844;
  --blue: #0b1f3a;
  --blue-soft: #1a3a5c;
  --cyan: #00b4d8;
  --gray: #f4f6f8;
  --gray-mid: #e8ecf0;
  --muted: #5a6b7d;
  --white: #ffffff;
  --shadow-soft: 0 4px 24px rgba(11, 31, 58, 0.06);
  --shadow-card: 0 2px 12px rgba(11, 31, 58, 0.08);
  --radius: 16px;
  --container: 1160px;
  --gutter: max(24px, env(safe-area-inset-left, 0px));
  --gutter-right: max(24px, env(safe-area-inset-right, 0px));
  --font: "Manrope", system-ui, sans-serif;
  --hero-glow:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0, 200, 83, 0.18), transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0, 180, 216, 0.12), transparent 60%),
    linear-gradient(165deg, #f8fbf9 0%, #eef3f8 45%, #e8f5ee 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--blue);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  box-sizing: border-box;
}

@media (min-width: 640px) {
  :root {
    --gutter: 24px;
    --gutter-right: 24px;
  }
}

@media (min-width: 1024px) {
  :root {
    --gutter: 32px;
    --gutter-right: 32px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-sm {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 14px;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  background: var(--white);
  border-color: var(--gray-mid);
  color: var(--blue);
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 236, 240, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}

@media (min-width: 640px) {
  .header-inner {
    height: 72px;
  }
}

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

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 200, 83, 0.25);
}

.logo-text {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

@media (min-width: 640px) {
  .logo-text {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .logo-text {
    font-size: 20px;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-desktop a {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  background: var(--gray);
  color: var(--blue);
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-legal {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

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

@media (min-width: 640px) {
  .footer-grid-compact {
    grid-template-columns: 1.4fr 1fr;
  }
}

/* About */
.about-grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.about-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--gray-mid);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

@media (min-width: 640px) {
  .about-card {
    padding: 28px;
  }
}

.about-card h3 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 700;
}

.about-dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-dl dt {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-dl dd {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
}

.about-dl a {
  color: var(--green-dark);
}

.about-dl a:hover {
  text-decoration: underline;
}

.about-note {
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.header-cta {
  display: none;
}

@media (min-width: 640px) {
  .header-cta {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--gray-mid);
  background: var(--white);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  border-top: 1px solid var(--gray-mid);
  background: var(--white);
}

.nav-mobile[hidden] {
  display: none;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 12px;
  padding-bottom: 16px;
}

.mobile-nav-inner a {
  padding: 12px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
}

.mobile-nav-inner a:hover {
  background: var(--gray);
}

.mobile-nav-inner .btn {
  margin-top: 8px;
  width: 100%;
}

body.menu-open {
  overflow: hidden;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--hero-glow);
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
}

.hero-pattern {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300C853' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 40px;
  padding-block: 64px;
  align-items: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding-block: 96px;
  }
}

.eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-emblem {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 200, 83, 0.3);
}

@media (min-width: 640px) {
  .hero-emblem {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.65rem, 4.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  word-break: break-word;
}

.hero-lead {
  margin: 20px 0 0;
  max-width: 28rem;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--blue);
}

.hero-sub {
  margin: 12px 0 0;
  max-width: 28rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.55;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions .btn {
  min-width: 160px;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-visual {
    max-width: none;
  }
}

.hero-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue), var(--blue-soft) 50%, #0d4a3a);
  box-shadow: var(--shadow-soft);
  animation: float-soft 5s ease-in-out infinite;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 200, 83, 0.35), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(0, 180, 216, 0.25), transparent 45%);
}

.hero-card-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
}

.hero-card-panel .label {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.hero-card-panel .price {
  margin: 4px 0 0;
  font-size: 24px;
  font-weight: 700;
}

.hero-card-panel .hint {
  margin: 8px 0 0;
  font-size: 14px;
  opacity: 0.75;
}

.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.animate-fade-up {
  animation: fade-up 0.7s ease-out both;
}

.animate-fade-up-delay {
  animation: fade-up 0.7s ease-out 0.15s both;
}

.animate-fade-up-delay-2 {
  animation: fade-up 0.7s ease-out 0.3s both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-card,
  .animate-fade-up,
  .animate-fade-up-delay,
  .animate-fade-up-delay-2 {
    animation: none;
  }
}

/* Sections common */
.section {
  padding-block: 64px;
}

@media (min-width: 640px) {
  .section {
    padding-block: 80px;
  }
}

.section-title {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 12px 0 0;
  max-width: 40rem;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}

@media (min-width: 640px) {
  .section-lead {
    font-size: 18px;
  }
}

.section-gray {
  background: var(--gray);
}

/* Products */
.products-grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-mid);
  background: var(--white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.product-card.is-active {
  border-color: rgba(0, 200, 83, 0.4);
}

.product-card.is-soon {
  opacity: 0.9;
}

.product-card-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.product-card-bg.osago {
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.15), rgba(0, 180, 216, 0.08));
}

.product-card-bg.kasko {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.12), transparent);
}

.product-card-bg.mortgage {
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.08), transparent);
}

.product-card-bg.travel {
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.08), transparent);
}

.product-top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.product-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.badge-online {
  background: rgba(0, 200, 83, 0.15);
  color: var(--green-dark);
}

.badge-soon {
  background: var(--gray);
  color: var(--muted);
}

.product-card p {
  position: relative;
  margin: 12px 0 0;
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.product-link {
  position: relative;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
}

.product-card:hover .product-link {
  text-decoration: underline;
}

/* OSAGO widget */
.osago-wrap {
  margin-top: 32px;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 640px) {
  .osago-wrap {
    min-height: 720px;
  }
}

/* Steps */
.steps-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.step-item {
  display: flex;
  gap: 16px;
}

@media (min-width: 768px) {
  .step-item {
    flex-direction: column;
    gap: 0;
  }
}

.step-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--green);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0, 200, 83, 0.25);
}

@media (min-width: 768px) {
  .step-num {
    margin-bottom: 16px;
  }
}

.step-item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.step-item p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

@media (min-width: 640px) {
  .step-item p {
    font-size: 16px;
  }
}

/* Advantages */
.advantages {
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
  padding-block: 56px;
}

.advantages-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.adv-item {
  display: flex;
  gap: 16px;
}

.adv-dot {
  margin-top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.adv-item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.adv-item p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

@media (min-width: 640px) {
  .adv-item p {
    font-size: 16px;
  }
}

/* FAQ */
.faq-box {
  margin-top: 32px;
  border: 1px solid var(--gray-mid);
  border-radius: 16px;
  overflow: hidden;
  max-width: 720px;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--gray-mid);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: var(--blue);
  cursor: pointer;
}

@media (min-width: 640px) {
  .faq-q {
    padding: 16px 24px;
    font-size: 18px;
  }
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--gray);
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: rgba(0, 200, 83, 0.15);
  color: var(--green-dark);
}

.faq-a {
  display: none;
  padding: 0 20px 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

@media (min-width: 640px) {
  .faq-a {
    padding: 0 24px 20px;
    font-size: 16px;
  }
}

.faq-item.is-open .faq-a {
  display: block;
}

/* Stub / inner pages */
.page-stub {
  min-height: 60vh;
  background: var(--gray);
  padding-block: 64px;
}

@media (min-width: 640px) {
  .page-stub {
    padding-block: 96px;
  }
}

.stub-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px;
  text-align: center;
  border-radius: 24px;
  border: 1px solid var(--gray-mid);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 640px) {
  .stub-card {
    padding: 48px;
  }
}

.stub-card h1 {
  margin: 12px 0 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stub-card p {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}

@media (min-width: 640px) {
  .stub-card p {
    font-size: 18px;
  }
}

.stub-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .stub-actions {
    flex-direction: row;
    justify-content: center;
  }

  .stub-actions .btn {
    width: auto;
  }
}

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

/* Privacy */
.privacy-page {
  padding-block: 48px 80px;
}

.breadcrumbs {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--green-dark);
}

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

.privacy-page h1 {
  margin: 16px 0 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
}

.privacy-meta {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.privacy-body {
  margin-top: 32px;
  max-width: 720px;
}

.privacy-body section + section {
  margin-top: 24px;
}

.privacy-body h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.privacy-body p {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.privacy-body a {
  font-weight: 500;
  color: var(--green-dark);
}

.privacy-body a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: var(--blue);
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 40px;
  padding-block: 48px;
  width: 100%;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-brand {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.footer-text {
  margin: 12px 0 0;
  max-width: 280px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.footer-label {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-note {
  margin: 24px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-block: 20px;
  width: 100%;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Mobile layout polish ——— */
@media (max-width: 639px) {
  .site-header {
    padding-top: env(safe-area-inset-top, 0px);
  }

  .header-inner {
    height: 60px;
    gap: 12px;
  }

  .logo {
    min-width: 0;
    max-width: calc(100% - 52px);
  }

  .logo-text {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-inner {
    padding-block: 28px 40px;
    gap: 28px;
  }

  .footer-grid {
    padding-block: 40px;
    gap: 28px;
  }

  .footer-bottom-inner {
    padding-block: 16px calc(16px + env(safe-area-inset-bottom, 0px));
    gap: 6px;
  }

  .site-footer .container {
    padding-inline: var(--gutter);
  }

  .hero .container,
  .site-header .container {
    padding-inline: var(--gutter);
  }

  .hero-brand {
    gap: 12px;
    align-items: flex-start;
  }

  .hero-emblem {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.15;
  }

  .hero-lead {
    margin-top: 14px;
    font-size: 1.05rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
    gap: 10px;
  }

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

  .hero-visual {
    max-width: 100%;
    margin: 0;
  }

  .hero-card {
    border-radius: 20px;
  }

  .hero-card-panel {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px;
  }

  .section {
    padding-block: 48px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-lead {
    font-size: 0.95rem;
  }

  .products-grid,
  .steps-grid,
  .about-grid,
  .advantages-grid {
    margin-top: 28px;
    gap: 12px;
  }

  .product-card,
  .about-card {
    padding: 18px;
  }

  .osago-wrap {
    margin-top: 24px;
    min-height: 520px;
    border-radius: 12px;
    /* виджет Сравни не должен вылезать за края */
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .osago-wrap iframe,
  .osago-wrap > * {
    max-width: 100% !important;
  }

  .faq-box {
    margin-top: 24px;
    border-radius: 12px;
  }

  .faq-q {
    padding: 14px 16px;
    font-size: 15px;
    gap: 10px;
  }

  .faq-a {
    padding: 0 16px 16px;
    font-size: 14px;
  }

  .advantages {
    padding-block: 40px;
  }

  .mobile-nav-inner {
    padding-top: 12px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
}

