* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #172033;
  background: #f5f7fb;
  line-height: 1.6;
}

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

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 80px 8%;
  overflow: hidden;
  color: #ffffff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 20, 44, 0.92), rgba(8, 20, 44, 0.58)),
    url("room-01.jpg") center/cover no-repeat;
  z-index: -1;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1d9bf0;
  margin-bottom: 14px;
}

.hero .eyebrow {
  color: #8ed0ff;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.02;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.hero p {
  max-width: 650px;
  font-size: 1.18rem;
  color: #e7edf8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn,
button {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 15px 26px;
  background: #1d9bf0;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover,
button:hover {
  transform: translateY(-2px);
  background: #0b7fd0;
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.notice {
  margin: -35px auto 60px;
  position: relative;
  z-index: 2;
  max-width: 1080px;
  background: #ffffff;
  border-left: 6px solid #1d9bf0;
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: 0 18px 45px rgba(16, 32, 64, 0.12);
}

.facts {
  max-width: 1180px;
  margin: 0 auto 80px;
  padding: 0 6%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.facts div {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(16, 32, 64, 0.08);
}

.facts span,
.finance-box span,
.detail span {
  display: block;
  font-size: 0.85rem;
  color: #657187;
  margin-bottom: 8px;
}

.facts strong,
.finance-box strong {
  font-size: 1.35rem;
}

.intro,
.funding,
.legal-box,
.contact {
  max-width: 1040px;
  margin: 0 auto 90px;
  padding: 0 6%;
}

.intro p,
.funding p,
.legal-box p,
.contact p {
  font-size: 1.05rem;
  color: #4d596d;
  margin-bottom: 14px;
}

.tour {
  max-width: 1180px;
  margin: 0 auto 100px;
  padding: 0 6%;
  display: grid;
  gap: 38px;
}

.tour-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  box-shadow: 0 18px 50px rgba(16, 32, 64, 0.12);
}

.tour-card.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.tour-card.reverse img {
  order: 2;
}

.tour-card img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.tour-card div {
  padding: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tour-card span {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #e9f5ff;
  color: #1d9bf0;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 20px;
}

.tour-card p {
  color: #4d596d;
}

.funding {
  background: #ffffff;
  max-width: 1180px;
  border-radius: 32px;
  padding: 54px 6%;
  box-shadow: 0 18px 50px rgba(16, 32, 64, 0.1);
}

.funding-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.funding-card {
  padding: 28px;
  border-radius: 24px;
  background: #f5f7fb;
  border: 1px solid #e3e9f2;
}

.calculator-section {
  max-width: 1180px;
  margin: 0 auto 100px;
  padding: 0 6%;
}

.calculator-card,
.finance-content {
  background: #0b1730;
  color: #ffffff;
  border-radius: 34px;
  padding: 56px;
  box-shadow: 0 22px 60px rgba(16, 32, 64, 0.18);
}

.calculator-card h2,
.finance-content h2 {
  color: #ffffff;
}

.finance-intro {
  color: #d9e4f2;
  max-width: 850px;
  margin-bottom: 34px;
}

.input-row {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 24px;
  border-radius: 22px;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 160px 1fr 140px;
  align-items: center;
  gap: 20px;
}

.input-row label {
  font-weight: 700;
}

.input-row input[type="range"] {
  width: 100%;
  accent-color: #1d9bf0;
}

.finance-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.finance-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 24px;
}

.finance-box.highlight {
  background: #1d9bf0;
  border-color: #1d9bf0;
}

.finance-box.highlight span {
  color: rgba(255, 255, 255, 0.8);
}

.finance-box span,
.detail span {
  color: #b8c5d8;
}

.finance-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.detail {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 20px;
}

.finance-note {
  margin-top: 28px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: #d9e4f2;
}

.finance {
  max-width: 1180px;
  margin: 0 auto 100px;
  padding: 0 6%;
}

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

.step {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 26px;
}

.step span {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #1d9bf0;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.step p {
  color: #d9e4f2;
}

.legal-box {
  background: #ffffff;
  border-radius: 28px;
  padding: 44px 6%;
  box-shadow: 0 18px 50px rgba(16, 32, 64, 0.1);
}

.contact {
  background: #ffffff;
  border-radius: 32px;
  padding: 54px 6%;
  box-shadow: 0 18px 50px rgba(16, 32, 64, 0.1);
}

form {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d9e1ec;
  border-radius: 16px;
  padding: 16px 18px;
  font: inherit;
  background: #ffffff;
}

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

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4d596d;
  font-size: 0.95rem;
}

.check input {
  width: auto;
  margin-top: 5px;
}

footer {
  text-align: center;
  padding: 38px 6%;
  color: #6d778a;
}

@media (max-width: 980px) {
  .facts,
  .funding-grid,
  .finance-grid,
  .finance-details,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .tour-card,
  .tour-card.reverse {
    grid-template-columns: 1fr;
  }

  .tour-card.reverse img {
    order: 0;
  }

  .input-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 70px 6%;
  }

  .facts,
  .funding-grid,
  .finance-grid,
  .finance-details,
  .steps {
    grid-template-columns: 1fr;
  }

  .calculator-card,
  .finance-content {
    padding: 34px 24px;
  }

  .tour-card div {
    padding: 30px 24px;
  }

  .tour-card img {
    min-height: 260px;
  }
}