* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1e21;
  --muted: #5a5f67;
  --paper: #f7f4f1;
  --accent: #1f6feb;
  --accent-dark: #134aa4;
  --sand: #efe6dc;
  --sky: #e8f0f9;
  --stone: #e3e1de;
  --forest: #1f3b2b;
}

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%;
}

.site-header {
  padding: 20px 6vw 10px;
  background: #ffffff;
  border-bottom: 1px solid #e6e2dd;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 20px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 6px;
}

.nav-links a:hover {
  background: var(--paper);
}

.ad-label {
  font-size: 12px;
  color: #ffffff;
  background: var(--forest);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.section {
  padding: 64px 6vw;
}

.section.alt {
  background: var(--paper);
}

.section.deep {
  background: var(--sand);
}

.section.sky {
  background: var(--sky);
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .media {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.hero {
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 25, 36, 0.6);
}

.hero .split {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.2;
  margin: 16px 0;
}

.hero p {
  max-width: 520px;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1c2430;
}

.img-frame {
  background-color: var(--stone);
  border-radius: 16px;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 180px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin: 0;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  padding: 16px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e7e1db;
}

.pricing-item strong {
  display: block;
  font-size: 18px;
  margin-top: 6px;
}

.testimonial {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e7e1db;
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d5d1cc;
  font-size: 15px;
  font-family: inherit;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  padding: 12px 18px;
  background: var(--forest);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.sticky-cta:hover {
  background: #13261d;
}

.footer {
  padding: 40px 6vw;
  background: #151617;
  color: #e8e8e8;
}

.footer a {
  color: #e8e8e8;
  text-decoration: underline;
}

.footer-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-columns div {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #d5d1cc;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.page-title {
  font-size: 36px;
  margin-bottom: 12px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-text {
  max-width: 860px;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-list strong {
  display: block;
  margin-bottom: 6px;
}
