@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Source+Serif+4:wght@400;600&display=swap");

:root {
  --bg: #f5f4f1;
  --ink: #1b1b1d;
  --muted: #5d5c60;
  --accent: #2e6bff;
  --accent-dark: #1d3f9b;
  --sand: #efe9dc;
  --pine: #0f2d2a;
  --lime: #d2f5c2;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(10, 15, 25, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

.layout-sidebar {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  background: var(--white);
  padding: 28px 22px;
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.logo {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 18px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav a {
  color: var(--ink);
  font-weight: 500;
}

.nav small {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.sidebar-cta {
  background: var(--accent);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 32px 5vw 56px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.section {
  padding: 28px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.tone-light {
  background: var(--white);
  box-shadow: var(--shadow);
}

.tone-dark {
  background: var(--pine);
  color: var(--white);
}

.tone-dark a {
  color: var(--lime);
}

.tone-accent {
  background: var(--sand);
}

.tone-bright {
  background: var(--lime);
}

.headline {
  font-size: clamp(30px, 3.3vw, 46px);
  font-family: "Source Serif 4", serif;
  margin: 0;
}

.subhead {
  color: var(--muted);
  max-width: 620px;
  line-height: 1.6;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-media {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta {
  background: var(--accent);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta.secondary {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--ink);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.split .panel {
  flex: 1;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 220px;
  padding: 18px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-start;
  padding: 16px 20px;
  border-radius: 20px;
  background: var(--accent-dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 240px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form label {
  font-size: 14px;
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-family: inherit;
}

.form button {
  align-self: flex-start;
}

.footer {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer a {
  color: inherit;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--white);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 280px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.nav-toggle {
  display: none;
}

@media (min-width: 960px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }
}

@media (max-width: 960px) {
  .layout-sidebar {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    width: 100%;
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 8px 12px;
    border-radius: 14px;
  }

  .sticky-cta {
    position: static;
    max-width: none;
  }
}
