* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a2e;
  background: #f7f7f4;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: #1f2a2e;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #5b646a;
  border: 1px solid #cfd4d7;
  padding: 6px 10px;
  border-radius: 20px;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: #0d1b20;
  color: #f5f5f3;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 80px 0;
  max-width: 560px;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  width: 100%;
  background: rgba(9, 18, 22, 0.65);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: #f0a202;
  color: #1a1a1a;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid #f0a202;
  color: #f0a202;
}

.section {
  padding: 70px 0;
}

.section-dark {
  background: #101d22;
  color: #f5f5f3;
}

.section-light {
  background: #ffffff;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.image-frame {
  background: #dfe3e4;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.quote {
  padding: 22px;
  border-left: 4px solid #f0a202;
  background: #f6f1e8;
  border-radius: 8px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #0d1b20;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid #e0e4e6;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfd4d7;
  font-family: inherit;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.service-pick {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-pick label {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f6f1e8;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.footer {
  background: #0d1b20;
  color: #e6e6e2;
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid > div {
  flex: 1 1 200px;
}

.footer a {
  color: #e6e6e2;
  text-decoration: none;
}

.banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #d9d9d9;
  padding: 16px 0;
  display: none;
  z-index: 20;
}

.banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.banner-actions {
  display: flex;
  gap: 10px;
}

.notice {
  font-size: 14px;
  color: #3c454a;
}

.inline-link {
  color: #f0a202;
  text-decoration: none;
  font-weight: 600;
}

.page-hero {
  background: #101d22;
  color: #f5f5f3;
  padding: 60px 0;
}

.page-hero.small {
  padding: 40px 0;
}

.list-clean {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #e0e4e6;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1494976388531-d1058494cdd8?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-overlay {
  background: rgba(15, 24, 28, 0.72);
}
