* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #07111f;
  color: #f5f7fb;
  line-height: 1.5;
}

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

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

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 10, 20, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0a84ff, #091a33);
  color: white;
  font-weight: 800;
  letter-spacing: 1px;
}

.brand-text h1 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 2px;
}

.brand-text p {
  margin: 0;
  color: #8ea6c7;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  color: #dbe8ff;
  font-size: 0.95rem;
}

.nav a:hover {
  color: #4da3ff;
}

.cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pill {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.04);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #0a84ff, #0059c7);
  color: white;
  font-weight: 700;
  cursor: pointer;
}

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

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

.hero {
  padding: 72px 0 40px;
  background:
    radial-gradient(circle at top right, rgba(10,132,255,0.18), transparent 30%),
    linear-gradient(180deg, #07111f 0%, #0b1730 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9fc4ff;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0a84ff;
}

.hero-left h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.05;
}

.hero-left p {
  max-width: 640px;
  color: #c2d4f0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

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

.stat b {
  display: block;
  margin-bottom: 6px;
  color: white;
}

.stat span {
  color: #9fb0c9;
  font-size: 0.92rem;
}

.hero-right {
  position: relative;
}

.hero-right img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  min-height: 520px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}

.hero-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(5,10,20,0.82);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 18px;
  border-radius: 18px;
}

.hero-tag small {
  display: block;
  color: #9fb0c9;
  margin-bottom: 4px;
}

.feature-strip {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #081425;
}

.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 16px 0;
  text-align: center;
  color: #b9ccec;
  font-weight: 700;
}

.section {
  padding: 70px 0;
}

.dark-section {
  background: #091424;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head h3 {
  margin: 0 0 8px;
  font-size: 2rem;
}

.muted {
  color: #9eb1cc;
}

.chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #c7d7ee;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: #0d1a2f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  overflow: hidden;
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.card-body {
  padding: 18px;
}

.card-body h4 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.card-body p {
  color: #9eb1cc;
  font-size: 0.94rem;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.badge {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10,132,255,0.16);
  color: #88bcff;
}

.price {
  color: #ffffff;
  font-weight: 700;
}

.add {
  width: 100%;
  min-height: 44px;
  border: none;
  border-radius: 14px;
  background: #0a84ff;
  color: white;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
}

.lifestyle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.panel {
  background: #0d1a2f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 26px;
}

.panel.image {
  padding: 0;
  overflow: hidden;
}

.panel.image img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.contact-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.mini-card {
  padding: 18px;
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
}

.mini-card small {
  display: block;
  color: #9eb1cc;
  margin-bottom: 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.big-number {
  margin: 24px 0;
}

.big-number span {
  display: block;
  color: #9eb1cc;
  margin-bottom: 8px;
}

.big-number a {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
}

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

.form label {
  display: block;
  margin: 14px 0 6px;
  color: #dce7f8;
  font-weight: 700;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  background: #081425;
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  border-radius: 14px;
  padding: 14px;
  font: inherit;
}

.tiny {
  margin-top: 14px;
  color: #88bcff;
  font-size: 0.92rem;
}

.footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #060d18;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.link {
  color: #7cb7ff;
}

@media (max-width: 980px) {
  .topbar-inner,
  .section-head,
  .footer-inner,
  .hero-grid,
  .lifestyle,
  .contact-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav,
  .cta {
    flex-wrap: wrap;
  }

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

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

  .stats,
  .feature-strip-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .grid,
  .gallery-grid,
  .contact-mini {
    grid-template-columns: 1fr;
  }

  .hero-right img,
  .gallery-grid img,
  .card img,
  .panel.image img {
    height: auto;
    min-height: unset;
  }

  .hero-left h2 {
    font-size: 2.3rem;
  }
}
