* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #0c1b2a;
  background: #f6f8fa;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  background: #ffffff;
  border-bottom: 1px solid #dfe6ed;
}

.top-nav .brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-nav .links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.hero-split {
  display: flex;
  flex-direction: column;
  padding: 40px 8%;
  gap: 28px;
  background: linear-gradient(120deg, #e3eef7 0%, #ffffff 100%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  margin: 0;
}

.hero-copy p {
  max-width: 540px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary,
.btn-outline {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-primary {
  background: #0c1b2a;
  color: #ffffff;
}

.btn-outline {
  border: 1px solid #0c1b2a;
  color: #0c1b2a;
  background: transparent;
}

.split-section {
  display: flex;
  flex-direction: column;
  padding: 48px 8%;
  gap: 24px;
  background: #ffffff;
}

.split-section.alt {
  background: #eef3f7;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
}

.tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #41657c;
  font-weight: 600;
}

.quote {
  background: #0c1b2a;
  color: #ffffff;
  padding: 26px;
  border-radius: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #dce4ec;
  gap: 10px;
}

.service-card .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0c1b2a;
}

.trust-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 22px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #dce4ec;
}

.grid-two {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 8%;
  background: #0c1b2a;
  color: #ffffff;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  color: #0c1b2a;
  padding: 24px;
  border-radius: 20px;
}

.form-card label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cdd6df;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-card button {
  border: none;
  cursor: pointer;
  background: #0c1b2a;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
}

.inline-link {
  color: #0c1b2a;
  font-weight: 600;
  text-decoration: underline;
}

.page-footer {
  padding: 28px 8%;
  background: #0c1b2a;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: sticky;
  top: 12px;
  align-self: flex-end;
  margin: 12px 8% 0 auto;
  background: #ffcc4d;
  color: #2a1f00;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #d9e2eb;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: 1px solid #0c1b2a;
  background: #0c1b2a;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .reject {
  background: transparent;
  color: #0c1b2a;
}

.page-header {
  padding: 36px 8%;
  background: #e8eff5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px 8%;
}

.content-block {
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #dde6ee;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thanks-wrap {
  padding: 60px 8%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 900px) {
  .hero-split,
  .split-section,
  .form-section,
  .content-wrap {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy,
  .split-content,
  .form-section .form-copy,
  .content-wrap .content-main {
    flex: 1;
  }

  .hero-media,
  .split-image,
  .form-card,
  .content-wrap .content-side {
    flex: 1;
  }

  .grid-two {
    flex-direction: row;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .contact-grid {
    flex-direction: row;
  }
}
