* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #5a5a5a;
  --paper: #f7f5f1;
  --paper-2: #efe8de;
  --accent: #1f6feb;
  --accent-dark: #174ea6;
  --warm: #c06b3e;
  --shadow: 0 16px 40px rgba(16, 16, 16, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 0 12px;
  gap: 24px;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 260px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  padding: 32px 0 56px;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 2vw + 1.6rem, 3.6rem);
  margin: 0;
}

.hero-copy p {
  color: var(--muted);
  margin: 0;
}

.hero-media {
  flex: 1 1 360px;
  min-height: 360px;
  background: #d8d2c8;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cta-row.spaced {
  margin-top: 22px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.section {
  padding: 56px 0;
}

.section-muted {
  background: var(--paper);
}

.section-warm {
  background: var(--paper-2);
}

.bg-wave {
  background-image: url("https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-cohort {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-panel {
  position: relative;
  color: #ffffff;
}

.bg-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.58);
}

.bg-panel > .page {
  position: relative;
  z-index: 1;
}

.magazine-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.col-wide {
  flex: 1 1 520px;
}

.col-narrow {
  flex: 1 1 260px;
}

.pull-quote {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

.feature-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media {
  background: #e5dfd6;
  border-radius: 16px;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-small {
  height: 200px;
}

.media-medium {
  height: 260px;
}

.media-large {
  height: 320px;
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1f1f1;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pricing-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
}

.testimonial {
  padding: 20px;
  border-left: 3px solid var(--warm);
  background: #fff;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.lead-form {
  flex: 1 1 320px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form label {
  font-weight: 600;
  font-size: 0.9rem;
}

.lead-form input,
.lead-form select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7d7d7;
  font-size: 1rem;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid #e5e5e5;
  margin-top: 40px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 10;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.sticky-cta .btn {
  padding: 10px 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.notice {
  font-size: 0.9rem;
  color: var(--muted);
}

.page-title {
  font-size: clamp(2rem, 2vw + 1.4rem, 3rem);
  margin: 0 0 18px;
}

.simple-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.simple-card {
  flex: 1 1 260px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.details-block {
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.small-text {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 760px) {
  .nav {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 24px auto 0;
  }
}
