:root {
  --bg: #0f1720;
  --bg-soft: #152230;
  --card: #ffffff;
  --text: #1c2733;
  --muted: #667586;
  --line: #e7edf3;
  --gold: #c5a05a;
  --gold-dark: #a7823d;
  --cream: #f7f3eb;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(15, 23, 32, 0.14);
  --radius: 22px;
  --container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--bg);
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  padding: 9px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231,237,243,0.9);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--bg), #2d4053);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(15,23,32,0.22);
}

.brand span small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 12px;
  margin-top: -3px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  color: #2a3644;
}

.menu a:hover { color: var(--gold-dark); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: #111820;
  box-shadow: 0 12px 30px rgba(197,160,90,0.28);
}

.btn-dark {
  background: var(--bg);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--bg);
}

.mobile-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15,23,32,0.94) 0%, rgba(15,23,32,0.74) 45%, rgba(15,23,32,0.30) 100%),
    url("../img/hero.svg") center/cover no-repeat;
}

.hero.hero-small {
  min-height: 420px;
}

.hero-content {
  max-width: 720px;
  padding: 95px 0;
}

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 18px;
}

h1, h2, h3 {
  line-height: 1.13;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -2px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -1px;
}

h3 {
  font-size: 23px;
}

.lead {
  font-size: 20px;
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 720px;
}

.stat {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px;
}

.stat strong {
  display: block;
  color: var(--gold);
  font-size: 28px;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--cream);
}

.section-dark {
  background: var(--bg);
  color: var(--white);
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-title p {
  max-width: 560px;
  color: var(--muted);
  margin: 0;
}

.section-dark .section-title p,
.section-dark p { color: rgba(255,255,255,0.72); }

.grid {
  display: grid;
  gap: 24px;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 10px 35px rgba(15,23,32,0.06);
}

.card.dark {
  background: var(--bg-soft);
  border-color: rgba(255,255,255,0.08);
  color: var(--white);
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(197,160,90,0.14);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  font-size: 25px;
  margin-bottom: 20px;
}

.card p, .feature p { color: var(--muted); margin-bottom: 0; }
.card.dark p { color: rgba(255,255,255,0.72); }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.visual-box {
  min-height: 430px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(197,160,90,0.12), rgba(15,23,32,0.25)),
    url("../img/building.svg") center/cover no-repeat;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.floating-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  right: 28px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(15,23,32,0.18);
}

.checklist {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check::before {
  content: "✓";
  flex: 0 0 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: #111820;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
}

.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  color: var(--gold);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
}

.cta {
  background:
    linear-gradient(90deg, rgba(15,23,32,0.95), rgba(15,23,32,0.80)),
    url("../img/cta.svg") center/cover no-repeat;
  color: var(--white);
  border-radius: 34px;
  padding: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  box-shadow: var(--shadow);
}

.cta p { color: rgba(255,255,255,0.75); max-width: 680px; }

.form {
  display: grid;
  gap: 16px;
}

.form label {
  font-weight: 700;
  font-size: 14px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 14px 15px;
  font: inherit;
  background: #fff;
}

.form textarea { min-height: 140px; resize: vertical; }

.contact-box {
  background: var(--bg);
  color: var(--white);
  border-radius: 28px;
  padding: 34px;
}

.contact-box p { color: rgba(255,255,255,0.72); }

.footer {
  background: #0b1118;
  color: rgba(255,255,255,0.72);
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer h4 {
  color: var(--white);
  margin: 0 0 14px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.page-content h2 { margin-top: 34px; }
.page-content p, .page-content li { color: var(--muted); }

@media (max-width: 880px) {
  .mobile-toggle { display: block; }
  .menu {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }
  .menu.open { display: flex; }
  .menu .btn { width: 100%; }
  .stats, .grid-2, .grid-3, .split, .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-title, .cta {
    display: block;
  }
  .cta .btn { margin-top: 20px; }
  .hero { min-height: 620px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--container)); }
  .nav { height: 70px; }
  .menu { top: 70px; }
  .section { padding: 68px 0; }
  .cta { padding: 34px 24px; border-radius: 24px; }
  .topbar { display: none; }
}