*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #0f0f0f;
  color: #ffffff;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navbar */

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  position: relative;
  width: 26px;
  height: 26px;
}

.house-roof {
  position: absolute;
  inset: 0;
  border-radius: 4px 4px 0 0;
  border: 1.5px solid #E3CDA4;
  border-bottom: none;
  transform: skewY(-10deg);
}

.house-base {
  position: absolute;
  bottom: 0;
  left: 4px;
  right: 4px;
  height: 11px;
  border: 1.5px solid #E3CDA4;
  border-radius: 0 0 4px 4px;
}

.logo-text {
  line-height: 1.2;
}

.wordmark {
  font-family: 'Poppins', system-ui, sans-serif;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
}

.tagline {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
}

.nav-links {
  display: none;
  gap: 1.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.nav-links a:hover {
  color: #ffffff;
}

/* Buttons */

.btn-primary,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #E3CDA4;
  color: #000000;
}

.btn-primary:hover {
  filter: brightness(0.95);
}

.btn-outline {
  background: rgba(227, 205, 164, 0.08);
  border: 1px solid rgba(227, 205, 164, 0.4);
  color: #E3CDA4;
}

.btn-outline:hover {
  background: rgba(227, 205, 164, 0.16);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.full {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  padding: 5rem 0 4.5rem;
  background: radial-gradient(circle at top right, rgba(227, 205, 164, 0.18), transparent 55%),
              radial-gradient(circle at bottom left, rgba(227, 205, 164, 0.12), transparent 55%),
              #0f0f0f;
}

.hero-inner {
  position: relative;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #E3CDA4;
}

.hero h1 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0.8rem 0 0.4rem;
}

.hero-tagline {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.9rem;
}

.hero-sub {
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.hero-buttons {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Sections */

.section {
  padding: 3.5rem 0;
  background-color: #0f0f0f;
}

.section-alt {
  padding: 3.5rem 0;
  background-color: #121212;
}

.section h2 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1.8rem;
  margin: 0 0 0.5rem;
}

.section-lead {
  color: rgba(255, 255, 255, 0.72);
  max-width: 34rem;
  font-size: 0.98rem;
}

/* Cards (How it works) */

.cards {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1.25rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.card-step {
  color: #E3CDA4;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.card h3 {
  font-size: 1.1rem;
  margin: 0.4rem 0;
}

.card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Pricing */

.pricing-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1.4rem;
  padding: 1.6rem 1.5rem 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.pricing-card.featured {
  border-color: #E3CDA4;
  background: rgba(227, 205, 164, 0.07);
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1.3rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #E3CDA4;
}

.pricing-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.pricing-header h3 {
  margin: 0;
  font-size: 1.12rem;
}

.price {
  font-size: 1.05rem;
  font-weight: 600;
  color: #E3CDA4;
}

.price span {
  font-size: 0.8rem;
  color: rgba(227, 205, 164, 0.9);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 1.3rem;
}

.pricing-features li {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.4rem;
}

/* Extras */

.extras {
  margin-top: 2.5rem;
}

.extras h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.extras-grid {
  display: grid;
  gap: 0.9rem;
}

.extra-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.extra-name {
  font-size: 0.95rem;
}

.extra-price {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Contact */

.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 1rem;
}

.contact-details {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.3rem;
  font-size: 0.95rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1.3rem;
  padding: 1.5rem 1.5rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 0.75rem;
}

.contact-form label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  display: grid;
  gap: 0.35rem;
}

.contact-form input,
.contact-form select {
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.7rem 0.9rem;
  color: #ffffff;
  font: inherit;
}

.contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(227, 205, 164, 0.7);
}

.form-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.3rem 0 1.4rem;
  background-color: #0f0f0f;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-logo .wordmark {
  font-family: 'Poppins', system-ui, sans-serif;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
}

/* Responsive */

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .hero {
    padding: 5.5rem 0 5rem;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

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

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

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

  .contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: row;
  }
}
