* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4f0;
  --ink: #1f2430;
  --muted: #5d6572;
  --accent: #3c5cff;
  --accent-dark: #2b3fb4;
  --soft: #eef1f6;
  --sand: #efe6dd;
  --forest: #0f2a1d;
  --card: #ffffff;
  --border: #d7dbe2;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

header {
  padding: 28px 6vw 12px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 360px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  padding: 24px 6vw 56px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split__text,
.split__media {
  flex: 1;
}

.split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.split__media .media-box {
  background: var(--sand);
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.hero p {
  color: var(--muted);
  max-width: 520px;
}

.button-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 52px 6vw;
}

.section.light {
  background: #fff;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: var(--forest);
  color: #f5f7fb;
}

.section.dark a {
  color: #c9d5ff;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.story-card {
  background: var(--card);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  background: var(--soft);
  padding: 14px 18px;
  border-radius: 14px;
  min-width: 160px;
}

.services-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 260px;
}

.service-card .media-box {
  background: #dfe6f0;
  border-radius: 14px;
  overflow: hidden;
  height: 180px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.flow-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.flow-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 16px;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid var(--border);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
}

.form-status {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  padding: 32px 6vw 60px;
  background: #10131b;
  color: #f1f3f8;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.footer small {
  color: #c2c6d3;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  gap: 18px;
  align-items: center;
  max-width: 820px;
  width: calc(100% - 48px);
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.banner-text {
  color: var(--muted);
  font-size: 0.92rem;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-insight .split__text,
.bg-insight .section-title,
.bg-insight p {
  color: #f5f7fb;
}

.bg-insight .story-card {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.bg-learning {
  background-image: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-overlay {
  background: rgba(15, 42, 29, 0.88);
  border-radius: 28px;
  padding: 24px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
