* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2633;
  background: #f7f7f3;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6%;
  background: #101820;
  color: #f5f5f5;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 12px;
  color: #b8c1cc;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  background: #f2b705;
  color: #1b1b1b;
  border-radius: 999px;
  font-size: 12px;
  white-space: nowrap;
}

.hero {
  background: #0e1118;
  color: #f8f3ed;
}

.section {
  padding: 70px 6%;
  position: relative;
}

.section-light {
  background: #f7f7f3;
}

.section-soft {
  background: #eef1f4;
}

.section-contrast {
  background: #101820;
  color: #f5f5f5;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-column {
  flex: 1 1 320px;
  min-width: 280px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #dfb35a;
}

.hero-title {
  font-size: 40px;
  margin: 14px 0 18px;
  line-height: 1.1;
}

.lead {
  font-size: 18px;
  line-height: 1.6;
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-primary {
  background: #f2b705;
  color: #111;
}

.btn-primary:hover {
  background: #f5c33f;
}

.btn-outline {
  background: transparent;
  color: #f5f5f5;
  border-color: #f5f5f5;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  flex: 1 1 240px;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.08);
}

.card-dark {
  background: #18212c;
  color: #f5f5f5;
}

.card img {
  width: 100%;
  height: 170px;
  border-radius: 14px;
  margin-bottom: 16px;
  background-color: #d9dee4;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 12px;
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-label {
  font-weight: 600;
}

.pricing-price {
  font-weight: 700;
  color: #b46a00;
}

.form-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 12px 40px rgba(16, 24, 32, 0.1);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c8d0da;
  font-size: 14px;
  font-family: inherit;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: #101820;
  color: #f2b705;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid #f2b705;
  z-index: 10;
}

.sticky-cta:hover {
  background: #1c2733;
}

.image-frame {
  background-color: #d9dee4;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 320px;
}

.frame-dark {
  background-color: #2c3442;
}

.frame-mid {
  background-color: #d6dbe2;
}

.frame-soft {
  background-color: #e2e6ec;
}

.frame-charcoal {
  background-color: #2b323d;
}

.frame-light {
  background-color: #d9dee4;
}

.quote {
  font-size: 18px;
  line-height: 1.6;
}

.footer {
  background: #0e1118;
  color: #ccd6e0;
  padding: 40px 6%;
  margin-top: auto;
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 220px;
}

.footer h4 {
  margin-top: 0;
  color: #f2b705;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.disclaimer {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 40px rgba(16, 24, 32, 0.2);
  max-width: 360px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #101820;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.cookie-btn.primary {
  background: #101820;
  color: #ffffff;
}

.page-title {
  font-size: 34px;
  margin-bottom: 12px;
}

.text-block {
  line-height: 1.7;
}

.contact-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.1);
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-grid .contact-card {
  flex: 1 1 260px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.highlight {
  background: #f2b705;
  color: #101820;
  padding: 3px 8px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
