.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.62) 44%, rgba(0, 0, 0, 0.16) 100%),
    radial-gradient(circle at top right, rgba(60, 106, 165, 0.28), transparent 28%),
    linear-gradient(140deg, #302417 0%, #6b5743 38%, #b9a99a 100%);
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.12) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 38px;
  align-items: center;
  padding: 88px 0;
}

.hero .eyebrow {
  color: #ffd6bb;
}

.hero p {
  margin: 0 0 16px;
  max-width: 760px;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-side {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: min(260px, 74%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.22));
}

.split {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 42px;
  align-items: stretch;
}

.about-section {
  background: linear-gradient(180deg, #dde7ef 0%, #dbe6ee 100%);
}

.about-copy {
  padding: 40px 46px 44px;
}

.about-copy p {
  color: #203654;
  font-size: 17px;
  margin: 0 0 18px;
}

.about-copy .lead-dark {
  font-size: 18px;
  margin-bottom: 18px;
}

.about-visual {
  min-height: 420px;
  border-radius: 28px;
  background: linear-gradient(145deg, #11161d 0%, #0a111a 100%);
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 28px 30px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-panel-text h3 {
  margin: 0 0 6px;
  font-size: 42px;
  line-height: 1.04;
  white-space: nowrap;
}

.about-panel-text .subtitle {
  margin: 0 0 18px;
  color: #d3dbe4;
  font-size: 18px;
}

.about-panel-text p {
  margin: 0;
  color: #f5f7fb;
  font-size: 18px;
  line-height: 1.55;
  max-width: 540px;
}

.about-panel-media {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.portrait-img-about {
  width: min(320px, 100%);
  height: 320px;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  display: block;
  margin: 0 auto;
}

.usp {
  background: linear-gradient(90deg, #07111d 0%, #08121f 52%, #0d1b2b 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.usp::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  background: rgba(60, 106, 165, 0.12);
  left: -170px;
  top: 40px;
}

.center-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 44px;
}

.center-head .label {
  color: #75c7ff;
}

.center-head p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

.usp-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: var(--brand-orange);
  color: white;
  font-weight: 800;
  flex: 0 0 38px;
}

.usp-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 18px;
}

.usp-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

.steps-section {
  background: linear-gradient(180deg, #f7fafc 0%, #eef3f7 100%);
}

.steps-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.step-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(248, 250, 252, 0.94) 100%);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.05);
  min-height: 205px;
  border: 1px solid rgba(60, 106, 165, 0.08);
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: #dfe9f0;
  color: var(--brand-blue);
  font-weight: 800;
}

.step-card h3 {
  margin: 0 0 14px;
  font-size: 16px;
  min-height: 46px;
}

.step-card p {
  margin: 0;
  color: #1c2f4a;
  font-size: 16px;
}

.map-section {
  background: linear-gradient(180deg, #f4f6f8 0%, #ebeef2 100%);
}

.map-wrap {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 36px;
  align-items: center;
}

.map-art {
  border-radius: 30px;
  overflow: hidden;
  min-height: 470px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
  background: #dfe7ef;
}

.map-img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  display: block;
}

.place-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.tag {
  background: var(--brand-orange);
  color: white;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(238, 131, 53, 0.25);
  transition: 0.2s ease;
}

.tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(238, 131, 53, 0.35);
}

.blog-section {
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f7 100%);
}

.blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: start;
}

.blog-main {
  padding: 40px 44px;
}

.blog-main p {
  margin: 0 0 18px;
  color: #203654;
  font-size: 18px;
}

.blog-main ul {
  margin: 0 0 24px 20px;
  color: #203654;
  font-size: 18px;
}

.blog-main li {
  margin-bottom: 10px;
}

.blog-side-card {
  padding: 28px;
  position: sticky;
  top: 110px;
}

.blog-side-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.side-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 24px;
}

.side-point {
  background: #f3f6fa;
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 700;
  color: #1c2f4a;
}

@media (max-width: 1120px) {
  .hero-grid,
  .split,
  .map-wrap,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero-side {
    min-height: 200px;
  }

  .steps-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .usp-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-panel-text h3 {
    white-space: normal;
  }

  .blog-side-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .hero-grid {
    min-height: auto;
    padding: 52px 0 56px;
    gap: 20px;
  }

  .hero-side {
    display: none;
  }

  .hero p,
  .center-head p {
    font-size: 17px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .split,
  .usp-grid,
  .map-wrap,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .steps-section {
    display: none;
  }

  .map-art {
    display: none;
  }

  .about-copy {
    padding: 26px 22px 28px;
  }

  .about-panel-media {
    justify-content: center;
  }

  .portrait-img-about {
    max-height: 260px;
    width: min(280px, 100%);
  }

  .blog-main {
    padding: 28px 22px;
  }

  .blog-main p,
  .blog-main ul {
    font-size: 17px;
  }
}

.blog-section .container {
  max-width: 1100px;
}

.blog-main h1 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.blog-main h2 {
  font-size: 26px;
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-main h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 10px;
}

@media (max-width: 760px) {
  .blog-main h1 {
    font-size: 30px;
  }

  .blog-main h2 {
    font-size: 22px;
  }

  .blog-main h3 {
    font-size: 18px;
  }
}

