* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #111214;
  --muted: #5b6169;
  --accent: #5b3df5;
  --accent-2: #f65e3b;
  --paper: #f6f2ee;
  --paper-2: #f0f5ff;
  --paper-3: #fff6ed;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  border-bottom: 1px solid #ececec;
  background: #ffffff;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 5vw;
}

.nav-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.nav-top ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.nav-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: 1px solid var(--ink);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border: none;
}

.btn-ghost {
  border-color: #c8c8c8;
  color: var(--muted);
}

.btn:hover {
  transform: translateY(-2px);
}

main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mag-section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mag-section.alt {
  background: var(--paper);
}

.mag-section.tone {
  background: var(--paper-2);
}

.mag-section.warm {
  background: var(--paper-3);
}

.mag-hero {
  padding-top: 56px;
}

.mag-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mag-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

h1 {
  font-size: 40px;
  line-height: 1.05;
}

h2 {
  font-size: 28px;
  line-height: 1.15;
}

h3 {
  font-size: 20px;
}

p {
  color: var(--muted);
}

.highlight {
  color: var(--ink);
  font-weight: 600;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid #ededed;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.mag-divider {
  height: 1px;
  background: #dcdcdc;
  margin: 16px 0;
}

.quote {
  background: #ffffff;
  padding: 18px;
  border-left: 4px solid var(--accent);
  border-radius: 14px;
}

.list-check {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-check li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list-check span {
  color: var(--accent);
  font-weight: 700;
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 22px;
  font-weight: 700;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #eaeaea;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfcfcf;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  padding: 32px 6vw 40px;
  border-top: 1px solid #ececec;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--accent-2);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #111214;
  color: #ffffff;
  padding: 16px;
  border-radius: 14px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
  max-width: 320px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #ffffff;
  color: #111214;
  border-color: #ffffff;
}

@media (min-width: 768px) {
  .nav-wrap {
    gap: 18px;
  }

  .nav-top {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-actions {
    justify-content: flex-end;
  }

  h1 {
    font-size: 54px;
  }

  .mag-row {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1;
    min-width: 230px;
  }

  .price-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-item {
    flex: 1;
    min-width: 220px;
  }
}
