:root {
  --red: #b12828;
  --red-dark: #921f1f;
  --text: #161616;
  --muted: #616161;
  --line: #e3e3e3;
  --bg: #f5f3f1;
  --soft: #efecea;
  --panel: #fbfaf9;
  --panel-strong: #f1ece8;
  --shadow: 0 14px 40px rgba(0,0,0,0.08);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201,31,37,0.05), transparent 20%),
    linear-gradient(180deg, #f7f4f2 0%, #f3efec 100%);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 24px;
}
.brand img { width: 260px; height: auto; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  color: var(--muted);
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--text); }

.nav-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-switch a {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.lang-switch a.is-active {
  border-color: var(--line);
  color: var(--text);
  background: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 28px rgba(177,40,40,0.22);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--text);
}
.btn-secondary:hover { border-color: #d6d6d6; transform: translateY(-1px); }

.hero {
  padding: 72px 0 52px;
  background:
    radial-gradient(circle at top left, rgba(177,40,40,0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(177,40,40,0.08);
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 18px;
}
h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.hero p.lead {
  margin: 22px 0 0;
  font-size: 18px;
  color: var(--muted);
  max-width: 700px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 34px;
}
.trust-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
  font-size: 15px;
  color: var(--text);
}
.hero-visual { position: relative; }
.hero-image {
  min-height: 560px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  max-width: 300px;
}
.hero-badge strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}
section { padding: 84px 0; }
.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}
.section-head.compact {
  margin-bottom: 18px;
  max-width: none;
}
.section-head .label,
.inline-label {
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.section-head p {
  color: var(--muted);
  margin: 16px 0 0;
  font-size: 17px;
}
.features,
.services,
.faq-grid,
.footer-grid {
  display: grid;
  gap: 20px;
}
.features { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.card-number {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(177,40,40,0.1);
  color: var(--red);
  font-weight: 800;
  margin-bottom: 16px;
}
.card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.services { grid-template-columns: repeat(2, minmax(0,1fr)); }
.service-list {
  display: grid;
  gap: 14px;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.service-item span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
  margin-top: 7px;
  flex: 0 0 auto;
}
.service-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
}
.process {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0.35)),
    linear-gradient(180deg, #ebe6e2 0%, #f1ece8 100%);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.process-grid,
.gallery-grid {
  display: grid;
  gap: 20px;
}
.process-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.gallery-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.gallery-photo {
  aspect-ratio: 4 / 2.7;
  min-height: 220px;
  max-height: 260px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.gallery-caption {
  padding: 16px 18px 18px;
}
.gallery-caption strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}
.gallery-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.coverage-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}
.coverage-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.coverage-panel p {
  color: var(--muted);
  margin: 0 0 18px;
}
.coverage-list {
  display: grid;
  gap: 12px;
  color: var(--text);
  font-weight: 600;
}
.faq-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 22px 18px;
  background: #fff;
}
.faq-item h3 {
  margin: 0 0 10px;
  font-size: 18px;
}
.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.cta {
  padding: 96px 0;
  background:
    linear-gradient(135deg, rgba(177,40,40,0.06), rgba(177,40,40,0.12)),
    #fff;
}
.cta-box {
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}
.cta-box p {
  color: var(--muted);
  margin: 14px 0 0;
  max-width: 650px;
  font-size: 17px;
}
.cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}
footer {
  padding: 34px 0 40px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: start;
}
.footer-brand img {
  width: 260px;
  margin-bottom: 14px;
}
.footer-brand p,
.footer-col a,
.footer-col p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}
.footer-col {
  display: grid;
  gap: 12px;
}
.footer-col strong {
  font-size: 15px;
  margin-bottom: 4px;
}
.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #888;
  font-size: 14px;
}
@media (max-width: 1180px) {
  .hero-grid,
  .coverage-box,
  .cta-box,
  .features,
  .process-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .gallery-grid,
  .faq-grid,
  .services {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid-home {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .hero-image { min-height: 480px; }
  .nav-links { display: none; }
}
@media (max-width: 760px) {
  section, .cta { padding: 68px 0; }
  .hero { padding: 42px 0 32px; }
  .hero-grid,
  .features,
  .services,
  .process-grid,
  .gallery-grid,
  .coverage-box,
  .faq-grid,
  .cta-box,
  .footer-grid,
  .hero-trust {
    grid-template-columns: 1fr;
  }
  .gallery-grid-home {grid-template-columns: 1fr !important;}
  .gallery-item-home .gallery-photo {
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
  }
  .cta-actions { justify-content: flex-start; }
  .hero-image { min-height: 340px; }
  .brand img, .footer-brand img { width: 180px; }
  .nav-tools .btn { display: none; }
  .card, .coverage-panel, .cta-box { padding: 22px; }
  .hero-badge { position: static; margin-top: 16px; max-width: none; }
  .nav-tools { gap: 8px; }
}

@media (max-width: 900px) {
  .dual-grid {
    grid-template-columns: 1fr;
  }
}

.faq-page {
  background:
    radial-gradient(circle at top left, rgba(201,31,37,0.05), transparent 22%),
    linear-gradient(180deg, #f7f4f2 0%, #f2eeeb 100%);
  min-height: 100vh;
}

.faq-hero {
  padding: 72px 0 28px;
}

.faq-head {
  max-width: 820px;
}

.faq-page-section {
  padding: 20px 0 84px;
}

.faq-page-grid {
  grid-template-columns: 1fr;
}

.faq-item-page {
  background: linear-gradient(180deg, #ffffff 0%, #f8f3ef 100%);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
}

.faq-back {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.dual-section {
  padding: 48px 0 34px;
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.dual-column {
  background: #fbfaf9;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 24px;
  padding: 20px 20px 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.left-tight {
  max-width: none;
  margin-bottom: 14px;
}

.feature-stack {
  display: grid;
  gap: 16px;
}

.card-soft {
  background: linear-gradient(180deg, #fcfbfa 0%, #f5f0ec 100%);
}

.service-list-single {
  gap: 12px;
}

.gallery-item-home {
  background: #fbfaf9;
}

.gallery-more {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

body {
  background:
    radial-gradient(circle at top left, rgba(201,31,37,0.05), transparent 20%),
    linear-gradient(180deg, #f7f4f2 0%, #f3efec 100%);
}

.process {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0.35)),
    linear-gradient(180deg, #ebe6e2 0%, #f1ece8 100%);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.process .card {
  background: linear-gradient(180deg, #ffffff 0%, #f8f3ef 100%);
}

.coverage-panel {
  background: linear-gradient(180deg, #fcfbfa 0%, #f4eeea 100%);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.cta {
  padding: 96px 0;
  background:
    radial-gradient(circle at top right, rgba(201,31,37,0.08), transparent 26%),
    linear-gradient(180deg, #f4efeb 0%, #f8f5f3 100%);
}

.cta-box {
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f3ef 100%);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

footer {
  padding: 34px 0 40px;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: #f1ece8;
}

.gallery-strip-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gallery-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px 2px 10px;
  scrollbar-width: thin;
  width: 100%;
}

.gallery-strip::-webkit-scrollbar {
  height: 8px;
}

.gallery-strip::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.18);
  border-radius: 999px;
}

.gallery-strip-card {
  flex: 0 0 220px;
  background: #fbfaf9;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.gallery-thumb-button {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.gallery-strip-photo {
  width: 100%;
  height: 150px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.25s ease;
}

.gallery-thumb-button:hover .gallery-strip-photo {
  transform: scale(1.03);
}

.gallery-strip-caption {
  padding: 10px 12px 12px;
}

.gallery-strip-caption strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.3;
}

.gallery-strip-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.gallery-strip-nav {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.gallery-strip-nav:hover {
  background: #f8f8f8;
}

.gallery-more {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
}

.lightbox-dialog {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.lightbox-dialog img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #111;
}

.lightbox-caption {
  padding: 14px 18px 18px;
}

.lightbox-caption strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

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

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 4;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

@media (max-width: 760px) {
  .gallery-strip-card {
    flex: 0 0 180px;
  }

  .gallery-strip-photo {
    height: 120px;
  }

  .gallery-strip-nav {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
}

.gallery-strip-shell {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 12px;
  align-items: center;
}

.gallery-strip-viewport {
  overflow: hidden;
  width: 100%;
}

.gallery-strip-track {
  display: flex;
  gap: 14px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 calc((100% - 70px) / 6);
  min-width: 0;
}

.gallery-thumb-button {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.gallery-slide-photo {
  position: relative;
  width: 100%;
  height: 150px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: transform 0.25s ease;
}

.gallery-thumb-button:hover .gallery-slide-photo {
  transform: translateY(-2px);
}

.gallery-slide-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px 12px 11px;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.72) 100%);
  color: #fff;
}

.gallery-slide-overlay strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
}

.gallery-slide-overlay span {
  display: block;
  font-size: 11px;
  line-height: 1.35;
  opacity: 0.95;
}

.gallery-strip-nav {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.gallery-strip-nav:hover {
  background: #f8f8f8;
}

.gallery-strip-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.gallery-more {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
}

.lightbox-dialog {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.lightbox-dialog img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #111;
}

.lightbox-caption {
  padding: 14px 18px 18px;
}

.lightbox-caption strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

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

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 4;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

@media (max-width: 1180px) {
  .gallery-slide {
    flex: 0 0 calc((100% - 28px) / 3);
  }
}

@media (max-width: 760px) {
  .gallery-strip-shell {
    grid-template-columns: 38px 1fr 38px;
    gap: 8px;
  }

  .gallery-slide {
    flex: 0 0 calc((100% - 14px) / 2);
  }

  .gallery-slide-photo {
    height: 130px;
  }

  .gallery-strip-nav {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
}

.hero-composed {
  padding: 36px 0 26px;
}

.hero-composed-shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 46px 28px 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(246,243,241,0.98) 100%);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}

.hero-composed-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='138.56' viewBox='0 0 160 138.56'%3E%3Cg fill='none' stroke='rgba(0,0,0,0.055)' stroke-width='1.5'%3E%3Cpath d='M40 1h80l39 68.28-39 68.28H40L1 69.28z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 160px 138px;
  background-position: center;
}

.hero-composed-main,
.hero-composed-trust,
.hero-composed-services {
  position: relative;
  z-index: 2;
}

.hero-composed-main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.45fr);
  gap: 26px;
  align-items: end;
}

.hero-composed-copy {
  max-width: 640px;
}

.hero-logo-mini {
  margin-bottom: 22px;
}

.hero-logo-mini img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.hero-composed-title {
  margin: 0;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #181c24;
  max-width: 760px;
}

.hero-composed-title span {
  color: var(--red);
}

.hero-composed-subtitle {
  margin-top: 22px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
  font-weight: 800;
  color: #1f2430;
}

.hero-composed-lead {
  margin: 8px 0 0;
  max-width: 560px;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.35;
  color: #6a6f78;
}

.hero-actions-composed {
  margin-top: 26px;
}


.hero-side-card {
  width: min(100%, 280px);
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  padding: 22px 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  backdrop-filter: blur(6px);
}

.hero-side-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

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

.hero-composed-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 14px;
  margin-top: 22px;
  align-items: start;
}

.hero-mini-card {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 20px;
  padding: 18px 16px 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
  backdrop-filter: blur(5px);
}

.hero-mini-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.2;
  color: #1f2430;
}

.hero-mini-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.hero-composed-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.service-card-hero {
  background: rgba(255,255,255,0.92);
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 14px 30px rgba(0,0,0,0.05);
  padding: 22px 20px 20px;
}

.service-card {
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.08);
  border-color: rgba(177,40,40,0.18);
}

.service-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(177,40,40,0.08);
  color: var(--red);
  margin-bottom: 16px;
}

.service-card-icon span {
  font-size: 22px;
  line-height: 1;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.15;
  color: #1f2430;
}

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

@media (max-width: 1180px) {
  .hero-composed-main {
    grid-template-columns: 1fr;
    align-items: start;
  }


  .hero-composed-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-composed-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero-composed {
    padding: 20px 0 12px;
  }

  .hero-composed-shell {
    border-radius: 24px;
    padding: 24px 16px 16px;
  }

  .hero-logo-mini {
    margin-bottom: 16px;
  }

  .hero-logo-mini img {
    width: 140px;
  }

  .hero-composed-title {
    font-size: clamp(34px, 10vw, 54px);
    line-height: 0.98;
  }

  .hero-composed-subtitle {
    margin-top: 16px;
    font-size: 18px;
  }

  .hero-composed-lead {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions-composed {
    margin-top: 20px;
  }

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

  .hero-composed-trust {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .hero-side-card {
    width: 100%;
  }

  .hero-composed-services {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
  }

  .service-card-hero {
    border-radius: 20px;
    padding: 18px 16px 16px;
  }

  .service-card h3 {
    font-size: 17px;
  }

  .service-card p {
    font-size: 14px;
  }
}

.hero-composed-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 34px;
  align-items: center;
}

.hero-composed-copy {
  max-width: 640px;
}

.hero-composed-visual {
  min-width: 0;
}

.hero-composed-image-wrap {
  position: relative;
}

.hero-composed-image {
  min-height: 560px;
  border-radius: 30px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

.hero-side-card--overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(100%, 290px);
}

@media (max-width: 1180px) {
  .hero-composed-main {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-composed-image {
    min-height: 420px;
  }

  .hero-side-card--overlay {
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 760px) {
  .hero-composed-main {
    gap: 22px;
  }

  .hero-composed-image {
    min-height: 260px;
    border-radius: 22px;
  }

  .hero-side-card--overlay {
    position: static;
    width: 100%;
    margin-top: 14px;
  }
}