*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f2430;
  background: #f4f3f1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.header {
  padding: 28px 0 14px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #1f2430;
}

.main {
  flex: 1;
}

.split-section {
  padding: 72px 0;
  background: #f4f3f1;
}

.split-section.alt {
  background: #ffffff;
}

.split-section.deep {
  background: #101826;
  color: #f7f7f3;
}

.split-section.muted {
  background: #e6e3dd;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-media,
.split-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
}

.title {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.15;
  margin: 0;
}

.subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1f2430;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: #1f2430;
  color: #f7f7f3;
}

.btn.secondary {
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(16, 24, 38, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card.dark {
  background: #182233;
  color: #f7f7f3;
}

.card img {
  border-radius: 12px;
}

.stat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(31, 36, 48, 0.15);
  font-weight: 600;
}

.split-section.deep .stat {
  border-bottom-color: rgba(247, 247, 243, 0.2);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 16px;
  background: #f7f5f2;
  border: 1px solid rgba(31, 36, 48, 0.12);
}

.service-item strong {
  font-size: 1.1rem;
}

.price {
  font-size: 1rem;
  font-weight: 700;
}

.form-wrapper {
  background: #ffffff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(16, 24, 38, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(31, 36, 48, 0.2);
  font-size: 1rem;
}

.form-note {
  font-size: 0.85rem;
  color: rgba(31, 36, 48, 0.6);
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.footer {
  padding: 32px 0 40px;
  background: #0e1521;
  color: #e6e3dd;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-column {
  flex: 1 1 200px;
}

.footer a {
  color: #e6e3dd;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #f15b2a;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(241, 91, 42, 0.35);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(16, 24, 38, 0.18);
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.banner-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #1f2430;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}

.banner-btn.accept {
  background: #1f2430;
  color: #f7f7f3;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(241, 91, 42, 0.14);
  color: #f15b2a;
  font-weight: 600;
  font-size: 0.85rem;
  width: fit-content;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "-";
  position: absolute;
  left: 0;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
