* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e1f23;
  --muted: #5e6472;
  --accent: #2f6fed;
  --accent-dark: #1f4fb8;
  --paper: #ffffff;
  --mist: #f4f3f1;
  --sand: #ece7e0;
  --slate: #e6ebf4;
  --shadow: 0 18px 45px rgba(13, 20, 40, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.top-bar {
  background: var(--ink);
  color: #fff;
  padding: 10px 0;
}

.top-bar .page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.ad-label {
  font-size: 0.82rem;
  opacity: 0.85;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 18px 0 24px;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a:hover,
.nav a:focus {
  color: var(--accent);
}

.hero {
  padding: 42px 0 60px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.kicker {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  margin-bottom: 14px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-button:hover,
.cta-button:focus {
  background: var(--accent-dark);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.section {
  padding: 60px 0;
}

.layered {
  position: relative;
  overflow: hidden;
}

.layered .content {
  position: relative;
  z-index: 2;
}

.background-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
  z-index: 1;
}

.section.alt {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.section.slate {
  background: var(--slate);
}

.media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #d8dce6;
}

.cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 240px;
  box-shadow: 0 12px 28px rgba(20, 23, 40, 0.08);
}

.card .price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 8px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.form-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccd1de;
  font-size: 1rem;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pricing-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.pricing-media {
  flex: 1 1 240px;
}

.pricing-copy {
  flex: 2 1 320px;
}

.pricing-row .price-tag {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.contact-box {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.footer {
  padding: 40px 0;
  background: #101116;
  color: #e5e9f3;
}

.footer a {
  color: #e5e9f3;
}

.footer .page {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 360px;
  z-index: 20;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.section-title {
  margin-bottom: 18px;
}

@media (max-width: 820px) {
  .top-bar .page {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
