* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f6f3;
  line-height: 1.6;
}

a {
  color: #1f4c6f;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #1f4c6f;
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 6vw 10px;
  gap: 24px;
  background: #ffffff;
  border-bottom: 1px solid #e4e1dc;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  background: #f1ebe1;
  padding: 6px 10px;
  border-radius: 999px;
  color: #493a2f;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 40px 6vw 10px;
  background: #f1ebe1;
}

.hero-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-media {
  flex: 1 1 320px;
  min-width: 280px;
  background: #d9d4cc;
  border-radius: 16px;
  overflow: hidden;
}

.fallback-soft {
  background: #e5e0d8;
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.btn {
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  background: #1f4c6f;
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #f6d487;
  color: #402d14;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #1f4c6f;
  color: #1f4c6f;
}

.section {
  padding: 38px 6vw;
}

.section.alt {
  background: #ffffff;
}

.section.bg-one {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2a2d2f;
  color: #ffffff;
  position: relative;
}

.section.bg-one::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 26, 30, 0.65);
}

.section.bg-one > * {
  position: relative;
  z-index: 1;
}

.section.bg-two {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #dcd7cf;
  color: #1b1b1b;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(31, 76, 111, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.media {
  padding: 0;
  overflow: hidden;
}

.card.media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-media-wrap {
  background: #e5e0d8;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e7f1f8;
  color: #1f4c6f;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.inline-cta {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(31, 76, 111, 0.08);
}

.timeline-step {
  background: #1f4c6f;
  color: #ffffff;
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 700;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.pricing-card {
  flex: 1 1 240px;
  background: #1f4c6f;
  color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card.light {
  background: #f9f4ed;
  color: #2d2013;
  border: 1px solid #eadfce;
}

.pricing-card .price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(31, 76, 111, 0.08);
}

.form-details {
  flex: 1 1 260px;
}

.form {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d7d2ca;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e4e1dc;
  padding: 12px 18px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 520px;
}

.footer {
  margin-top: auto;
  background: #1b1b1b;
  color: #f4f4f4;
  padding: 30px 6vw;
}

.footer a {
  color: #f6d487;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 200px;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  z-index: 10;
  display: none;
}

.banner.active {
  display: block;
}

.banner-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-header {
  padding: 32px 6vw 10px;
  background: #f1ebe1;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-col > div {
  flex: 1 1 260px;
}

.image-block {
  background: #d9d4cc;
  border-radius: 14px;
  overflow: hidden;
}

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(31, 76, 111, 0.08);
}

.notice {
  background: #f6d487;
  color: #402d14;
  padding: 12px;
  border-radius: 10px;
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }
}
