:root {
  --dark: #0b0f16;
  --dark-soft: #131a26;
  --light: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #dbe1ea;
  --gold: #d4b06a;
  --accent: #f8c157;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
}

.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.header-dark {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.42));
}

.topline {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.topline-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.topline-left,
.topline-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar {
  color: #fff;
}

.nav-main {
  min-height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 15px;
  letter-spacing: 1.4px;
  font-weight: 700;
  border: 1px solid var(--gold);
  padding: 7px 11px;
}

.menu {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

.page-main {
  background: #fff;
}

.hero-full {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 132px 0 32px;
  color: var(--light);
  background: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&w=1960&q=80")
    center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(4, 9, 17, 0.38) 0%,
    rgba(4, 9, 17, 0.72) 60%,
    rgba(4, 9, 17, 0.9) 100%
  );
}

.hero-content,
.hero-awards {
  position: relative;
  z-index: 2;
}

.hero-content {
  width: 100%;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(56px, 11vw, 110px);
  font-weight: 800;
  letter-spacing: 1px;
}

.hero-sub {
  margin: 8px 0 0;
  font-size: clamp(12px, 2vw, 20px);
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid transparent;
  min-height: 44px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #171717;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
  background: transparent;
}

.hero-features {
  margin-top: 36px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-features div {
  display: flex;
  flex-direction: column;
}

.hero-features strong {
  font-size: 34px;
  line-height: 1;
}

.hero-features span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.hero-awards {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hero-awards article {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 14px;
}

.laurel {
  color: var(--gold);
}

.hero-awards h3 {
  margin: 8px 0 4px;
  font-size: 24px;
}

.hero-awards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.section {
  padding: 78px 0;
}

.section h2 {
  margin: 0 0 22px;
  font-size: clamp(30px, 3.8vw, 56px);
  line-height: 1.06;
}

.section-title-small {
  font-size: clamp(24px, 2.6vw, 36px) !important;
  text-align: center;
}

.section-lead {
  margin: 0 0 24px;
  color: var(--muted);
  max-width: 840px;
  line-height: 1.6;
  font-size: 17px;
}

.ratings {
  background: #f2f2f2;
}

.rating-carousel {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 8px;
  align-items: center;
}

.arrow {
  border: 0;
  border-radius: 3px;
  background: #7d7d7d;
  color: #fff;
  height: 30px;
  width: 30px;
  cursor: pointer;
}

.rating-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.rating-track article {
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
}

.rating-track .active {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.map-video {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

.map-card {
  min-height: 240px;
  border-radius: 22px;
  background: radial-gradient(circle at center, #fefefe 0%, #efefef 68%);
  border: 1px solid #ddd;
  position: relative;
  display: grid;
  place-content: center;
  text-align: center;
}

.map-card strong {
  font-size: 64px;
}

.map-card p {
  margin: 8px 0 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
}

.watermark {
  position: absolute;
  top: 22px;
  right: 28px;
  color: rgba(0, 0, 0, 0.08);
  font-size: 64px;
  font-weight: 700;
}

.video-card {
  border-radius: 16px;
  min-height: 240px;
  background: linear-gradient(120deg, #555, #2d2d2d);
  position: relative;
  display: grid;
  place-items: center;
}

.video-card p {
  color: #fff;
  font-size: 58px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.9;
}

.play {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ff4d22;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 32px;
}

.services-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: end;
  margin-bottom: 12px;
}

.services-head h2 {
  margin: 0;
}

.services-head p {
  margin: 0 0 10px;
  color: #2f2f2f;
}

.services-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.service-hero {
  border-radius: 10px;
  min-height: 250px;
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.42));
}

.service-hero > * {
  position: relative;
  z-index: 1;
}

.service-hero.one {
  background-image: url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1200&q=80");
}

.service-hero.two {
  background-image: url("https://images.unsplash.com/photo-1493666438817-866a91353ca9?auto=format&fit=crop&w=1200&q=80");
}

.service-hero h3 {
  margin: 0 0 8px;
  font-size: 46px;
}

.service-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.service-hero button {
  margin-top: 18px;
  width: 140px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: #d2ef3f;
  font-weight: 700;
}

.eco-center {
  border: 3px solid #edd347;
  display: grid;
  place-content: center;
  text-align: center;
}

.eco-center h3 {
  font-size: 56px;
  margin: 0;
}

.eco-center p {
  font-size: 30px;
}

.italic {
  font-size: 58px;
  margin: 0;
  font-style: italic;
}

.ideal-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
}

.ideal-side {
  border-radius: 12px;
  background: linear-gradient(150deg, #4a4a4a, #1f1f1f);
  min-height: 320px;
  color: #fff;
  display: flex;
  align-items: end;
  padding: 20px;
}

.stars-row {
  font-size: 42px;
  color: #ddd;
  letter-spacing: 10px;
  margin: 10px 0 18px;
}

.ideal-links {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.2fr auto;
  gap: 10px;
}

.ideal-links a {
  min-height: 62px;
  border-radius: 8px;
  border: 1px solid #dadada;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #333;
  font-weight: 600;
  background: #fafafa;
}

.ideal-links .calc {
  background: #d2ef3f;
  color: #111;
}

.calc-wrap {
  border: 1px solid #c8c1a8;
  border-radius: 10px;
  background: #fff;
  padding: 30px;
}

.calc-step {
  text-align: center;
  margin: -8px 0 18px;
  color: #6c6c6c;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.calc-block h3 {
  margin: 0 0 9px;
  font-size: 18px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pills button {
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  background: #fff;
  min-height: 36px;
  padding: 8px 14px;
}

.pills .active {
  background: #b7ad81;
  color: #fff;
}

.calc-block input[type="range"] {
  width: 100%;
}

.range-values {
  display: flex;
  justify-content: space-between;
  color: #777;
  font-size: 13px;
}

.calc-action {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.calc-action button {
  height: 56px;
  min-width: 180px;
  border: 0;
  border-radius: 999px;
  background: #d2ef3f;
  font-size: 26px;
}

.stars-badge {
  text-align: center;
  color: #c8ac50;
  letter-spacing: 6px;
}

.stars-title {
  text-align: center;
  font-size: clamp(40px, 5vw, 68px) !important;
  margin-top: 8px !important;
}

.stars-slider {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 10px;
  align-items: center;
}

.stars-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.stars-track article {
  min-height: 170px;
  border-radius: 8px;
  background: linear-gradient(135deg, #744839, #5c3e4f);
}

.light {
  color: rgba(255, 255, 255, 0.8) !important;
}

.design-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.design-points article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 12px;
}

.design-points strong {
  display: block;
  font-size: 24px;
  color: #fff;
}

.design-points span {
  color: rgba(255, 255, 255, 0.72);
}

.design-gallery .big {
  min-height: 210px;
  border-radius: 10px;
  background: linear-gradient(130deg, #2f2f2f, #1d1d1d);
}

.design-gallery .smalls {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.design-gallery .smalls article {
  min-height: 98px;
  border-radius: 8px;
  background: linear-gradient(130deg, #2f2f2f, #1d1d1d);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
}

.card h3 {
  margin: 0 0 8px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.section-dark {
  background: linear-gradient(180deg, #0c121e 0%, #141f31 100%);
  color: #fff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.project-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.project-card h3 {
  margin: 0 0 8px;
}

.project-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.project-card strong {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  font-size: 22px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.check-list {
  margin: 18px 0 0;
  padding-left: 20px;
  line-height: 1.9;
  color: #1f2937;
}

.dark-note {
  border-radius: 10px;
  background: var(--dark);
  color: #e7ecf5;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dark-note h3 {
  margin-top: 0;
  font-size: 30px;
  line-height: 1.15;
}

.dark-note p {
  margin: 0;
  color: #c8d3e3;
  line-height: 1.7;
}

.section-soft {
  background: #f2f5fb;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.steps-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.steps-grid h3 {
  margin: 0 0 10px;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.furniture-block .mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-cards article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.mini-cards h3 {
  margin: 0;
  font-size: 34px;
}

.mini-cards p {
  margin: 8px 0 0;
  color: var(--muted);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.news-grid article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.news-grid h3 {
  margin: 0 0 10px;
  line-height: 1.35;
}

.news-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.news-grid span {
  display: inline-block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.lead-wrap {
  background: #0d1524;
  color: #fff;
  border-radius: 10px;
  padding: 34px;
}

.lead-wrap h2 {
  margin-bottom: 12px;
}

.lead-wrap p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.lead-form {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
}

.lead-form input {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border-radius: 6px;
  padding: 12px;
  font-size: 15px;
  outline: none;
}

.footer {
  background: #090d14;
  color: #cad6e7;
  padding-top: 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-col strong {
  color: #fff;
}

.footer-bottom {
  padding: 16px 0 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: #9cafc9;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .hero-awards,
  .rating-track,
  .map-video,
  .services-top,
  .ecosystem-grid,
  .ideal-top,
  .ideal-links,
  .calc-grid,
  .stars-track,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .menu,
  .topline-right {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 16vw, 88px);
  }

  .hero-features {
    gap: 12px;
  }

  .hero-awards,
  .rating-carousel,
  .rating-track,
  .map-video,
  .services-head,
  .services-top,
  .ecosystem-grid,
  .ideal-top,
  .ideal-links,
  .calc-grid,
  .stars-slider,
  .stars-track,
  .news-grid,
  .lead-form,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .service-hero h3,
  .eco-center h3 {
    font-size: 34px;
  }

  .italic {
    font-size: 38px;
  }
}
