* {
  box-sizing: border-box;
}

:root {
  --ink: #1e1f24;
  --muted: #5a616f;
  --paper: #f7f4ef;
  --accent: #2a6f97;
  --accent-dark: #1c4b68;
  --warm: #f2e6d4;
  --cool: #e5eef5;
  --line: #d9d2c7;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

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 {
  padding: 12px 24px;
  background: var(--paper);
  font-size: 14px;
}

.topbar span {
  display: inline-block;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 15px;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 64px 24px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1 1 320px;
  min-width: 280px;
}

.split-col h1,
.split-col h2,
.split-col h3 {
  margin-top: 0;
}

.hero {
  background: var(--cool);
}

.hero-image {
  background-color: #c9d7e2;
  border-radius: 16px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 420px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
  flex-shrink: 0;
}

.card-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  background-color: #eadfd1;
  border-radius: 12px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 160px;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--warm);
  border-radius: 12px;
  gap: 10px;
}

.price-row strong {
  font-size: 18px;
}

.form-wrap {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.testimonial {
  background: var(--paper);
  padding: 18px;
  border-radius: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
}

.footer {
  margin-top: auto;
  padding: 32px 24px;
  border-top: 1px solid var(--line);
  background: #faf8f4;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.image-band {
  background-color: #d4dbe1;
  border-radius: 16px;
  overflow: hidden;
}

.image-band img {
  width: 100%;
  height: 260px;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.contact-box {
  background: var(--cool);
  border-radius: 16px;
  padding: 18px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  z-index: 20;
}

.bg-story {
  background-color: #dfe7ed;
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-focus {
  background-color: #efe6da;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-reject {
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.hidden {
  display: none;
}

@media (max-width: 820px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
