* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1f24;
  background-color: #f7f7f4;
  line-height: 1.6;
}

a {
  color: #0f4c5c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 20px 0;
  background-color: #f7f7f4;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  background-color: #0f4c5c;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 64px 0;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  padding: 56px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 420px;
}

.split-text h1,
.split-text h2 {
  margin-top: 0;
}

.tone-a {
  background-color: #eef0ea;
}

.tone-b {
  background-color: #ffffff;
}

.tone-c {
  background-color: #e7edf0;
}

.bg-vision {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fefefe;
}

.bg-vision .overlay {
  background-color: rgba(15, 37, 54, 0.72);
  padding: 56px 0;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 260px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 14px;
  height: 180px;
  object-fit: cover;
}

.img-frame {
  background-color: #d5d9d8;
  border-radius: 18px;
  overflow: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background-color: #0f4c5c;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background-color: #f3d7c2;
  color: #4a2a16;
}

.btn.ghost {
  background-color: transparent;
  border: 1px solid #0f4c5c;
  color: #0f4c5c;
}

.btn:hover {
  filter: brightness(0.95);
}

.cta-inline {
  font-weight: 600;
}

.list {
  padding-left: 18px;
  margin: 16px 0 0;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  background-color: #ffffff;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid #e0e6e3;
}

.price-row strong {
  font-size: 1.05rem;
}

.form-shell {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-grid label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-field {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9d0cd;
  font-size: 1rem;
}

.footer {
  padding: 40px 0 64px;
  background-color: #111a1c;
  color: #fefefe;
}

.footer a {
  color: #fefefe;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #ffffff;
  padding: 10px 12px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

.muted {
  color: #5f6b66;
}

.notice {
  background-color: #fff4e5;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid #f3d7c2;
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 10px;
    left: 10px;
    justify-content: space-between;
  }
}
