:root {
  --ink: #1c1f24;
  --muted: #5b6470;
  --paper: #f6f4f1;
  --accent: #4a6a8c;
  --accent-soft: #e7edf3;
  --warm: #f1ece6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img {
  display: block;
}

.site-header {
  padding: 24px 6vw 10px;
  background: #fff;
  border-bottom: 1px solid #e0e3e8;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.3px;
}

.tagline {
  font-size: 13px;
  color: var(--muted);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  background: var(--accent-soft);
  font-size: 12px;
  border-radius: 999px;
}

main {
  padding: 26px 6vw 60px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 36px;
}

.hero-text {
  flex: 1 1 320px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-media {
  flex: 1 1 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #dfe6eb;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-title {
  font-size: 26px;
  margin: 0 0 12px;
}

.mag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 36px;
}

.mag-col {
  flex: 1 1 240px;
}

.mag-panel {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-content {
  padding: 16px 18px 20px;
}

.card-title {
  font-weight: 600;
  margin: 0 0 8px;
}

.image-frame {
  background-color: #d7dde3;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rounded-frame {
  border-radius: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 14px;
}

.btn-secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.highlight-band {
  padding: 26px;
  border-radius: 18px;
  background: var(--warm);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.bg-feature {
  background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=1400&q=80');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 34px;
  border-radius: 18px;
  margin-bottom: 34px;
}

.bg-feature .mag-panel {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.bg-study {
  background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80');
  background-size: cover;
  background-position: center;
  padding: 32px;
  border-radius: 18px;
  margin-bottom: 36px;
}

.bg-study .mag-panel {
  background: rgba(255, 255, 255, 0.92);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  background: #fff;
  padding: 18px 20px;
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.price-item span {
  font-weight: 600;
}

.form-shell {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd2da;
  font-size: 14px;
}

.footer {
  padding: 30px 6vw 60px;
  background: #111318;
  color: #e4e6eb;
}

.footer a {
  color: #cdd7f1;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 22px;
}

.footer-col {
  flex: 1 1 200px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #111318;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.sticky-cta a {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #d7dde3;
  padding: 16px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.notice {
  font-size: 13px;
  color: var(--muted);
}

.simple-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}

.simple-hero .image-frame {
  flex: 1 1 260px;
  border-radius: 18px;
}

.simple-hero .hero-copy {
  flex: 1 1 280px;
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 10px;
    left: 10px;
    justify-content: space-between;
  }
}
