* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1d1f;
  --muted: #5b626a;
  --accent: #3b5bd6;
  --accent-2: #0f7c7d;
  --paper: #f6f4ef;
  --soft: #eef1f5;
  --line: #e1e3e6;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 20px;
  border-bottom: 1px solid var(--line);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--ink);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

main {
  padding: 32px 6vw 80px;
}

section {
  margin-bottom: 56px;
}

.mag-columns {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.col-40 {
  flex: 1 1 320px;
  max-width: 420px;
}

.col-60 {
  flex: 2 1 420px;
}

.col-50 {
  flex: 1 1 360px;
}

.headline {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.subhead {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid var(--accent);
}

.btn:hover {
  background: #2e4cc2;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn-outline:hover {
  background: #e7ecff;
}

.image-frame {
  background: #d9dfe8;
  padding: 8px;
  border-radius: 18px;
}

img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

.inline-card {
  background: var(--paper);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.card img {
  border-radius: 12px;
  margin-bottom: 12px;
}

.card-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.section-soft {
  background: var(--soft);
  padding: 36px;
  border-radius: 22px;
}

.section-paper {
  background: var(--paper);
  padding: 36px;
  border-radius: 22px;
}

.list-two {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.list-two div {
  flex: 1 1 260px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.cta-inline {
  color: var(--accent-2);
  text-decoration: underline;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.price-card {
  flex: 1 1 240px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: #fff;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-2);
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 360px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
}

form label {
  display: block;
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 8px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  z-index: 20;
}

.sticky-cta:hover {
  background: #0b6363;
}

.footer {
  padding: 32px 6vw 40px;
  border-top: 1px solid var(--line);
  background: #fafafa;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 30;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  background: #fff;
}

.cookie-actions button:hover {
  background: var(--soft);
}

.bg-hero {
  background: #e0e6f0;
  border-radius: 24px;
  padding: 18px;
}

.bg-context {
  background: #e6efe8;
  border-radius: 24px;
  padding: 32px;
}

.bg-context img {
  border-radius: 18px;
}

.bg-section-one {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.bg-section-one::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 20, 0.55);
  border-radius: 22px;
}

.bg-section-one > * {
  position: relative;
  z-index: 1;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .headline {
    font-size: 2rem;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
