* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1b1b;
  --muted: #5b5e66;
  --paper: #f6f4f1;
  --accent: #2f66ff;
  --accent-soft: #dfe7ff;
  --sand: #efe7dc;
  --slate: #1f2a44;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  gap: 24px;
  background: #ffffff;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav-links span {
  font-size: 0.86rem;
  color: var(--muted);
  max-width: 240px;
}

.main {
  flex: 1;
}

.section {
  padding: 80px 6vw;
}

.section.compact {
  padding: 56px 6vw;
}

.section.sand {
  background: var(--sand);
}

.section.paper {
  background: var(--paper);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1 1 320px;
}

.hero {
  padding: 96px 6vw 72px;
  background: var(--paper);
}

.hero-card {
  background: #ffffff;
  padding: 36px;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(32, 40, 74, 0.12);
  max-width: 520px;
}

.hero-card h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-image {
  background: #e7edf9;
  border-radius: 28px;
  overflow: hidden;
  min-height: 360px;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: var(--accent-soft);
  color: var(--slate);
}

.floating-note {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(20, 31, 71, 0.15);
  max-width: 320px;
  position: relative;
  top: -36px;
}

.grid-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(31, 42, 68, 0.12);
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  background: #d9dee9;
  margin-bottom: 16px;
}

.offset-block {
  background: var(--slate);
  color: #ffffff;
  padding: 48px;
  border-radius: 28px;
  margin-top: -60px;
}

.offset-block p {
  color: #dfe4f3;
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--slate);
  font-size: 0.86rem;
  margin-bottom: 16px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(31, 42, 68, 0.1);
}

.pricing-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-panel {
  background: #ffffff;
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(31, 42, 68, 0.14);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d2d6df;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.footer {
  background: #0f1220;
  color: #d9dbe6;
  padding: 40px 6vw;
}

.footer a {
  color: #d9dbe6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}

.footer small {
  display: block;
  color: #aeb3c4;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  color: var(--ink);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  width: min(320px, 90vw);
  z-index: 10;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 9;
}

.sticky-cta button {
  background: #ffb703;
  color: #1c1b18;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-stack img {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  background: #dbe3f3;
}

.highlight {
  font-weight: 700;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.background-panel {
  padding: 64px 6vw;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #ffffff;
}

.background-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 22, 38, 0.55);
}

.background-panel .panel-content {
  position: relative;
  max-width: 620px;
}

.media-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.media-block {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(20, 31, 71, 0.12);
}

.media-block img {
  width: 100%;
  height: 170px;
  border-radius: 12px;
  background: #dae1ef;
  margin-bottom: 12px;
}

.contact-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(31, 42, 68, 0.12);
}

.legal-text {
  max-width: 780px;
  color: var(--muted);
}

.banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bg-study {
  background-image: url("https://images.unsplash.com/photo-1461749280684-dccba630e2f6?w=1400&q=80");
}

.bg-focus {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da6?w=1400&q=80");
}

.bg-collab {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80");
}

@media (max-width: 860px) {
  .hero-card {
    max-width: 100%;
  }

  .sticky-cta {
    position: static;
    margin: 24px 6vw 0;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
