* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1d1f;
  --muted: #5b5f66;
  --accent: #2d5b8a;
  --accent-dark: #224463;
  --soft: #f4f1ec;
  --sand: #efe8dd;
  --night: #202733;
  --highlight: #f9f7f2;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  padding: 24px 0 12px;
}

.topbar .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  color: var(--ink);
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background: var(--soft);
  border-radius: 999px;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  padding: 40px 0 20px;
}

.hero-text,
.hero-media {
  flex: 1 1 320px;
  min-height: 320px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-text h1 {
  font-size: 38px;
  line-height: 1.2;
}

.hero-text p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin: 40px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section .panel {
  flex: 1 1 320px;
}

.panel.soft {
  background: var(--soft);
  padding: 28px;
  border-radius: 24px;
}

.panel.sand {
  background: var(--sand);
  padding: 28px;
  border-radius: 24px;
}

.section-title {
  font-size: 26px;
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 24px 0;
}

.card {
  flex: 1 1 220px;
  background: var(--highlight);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 260px;
}

.card h3 {
  font-size: 18px;
}

.card img {
  border-radius: 16px;
  height: 140px;
  background: #e6e2d7;
}

.image-frame {
  background: #e6e2d7;
  border-radius: 24px;
  overflow: hidden;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 16px 0;
}

.timeline-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.quote {
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: #f7f5f0;
  border-radius: 12px;
  margin: 18px 0;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 260px;
  border: 1px solid #e2ded5;
  border-radius: 20px;
  padding: 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  background: var(--night);
  color: #ffffff;
  border-radius: 28px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-size: 13px;
  color: #c9d2dc;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: #f2f5f8;
  color: var(--ink);
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.inline-link {
  font-weight: 600;
}

.footer {
  margin-top: 60px;
  padding: 30px 0 40px;
  border-top: 1px solid #e9e4da;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer small {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 30px 0 10px;
}

.page-hero img {
  border-radius: 24px;
  height: 260px;
  background: #e6e2d7;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #e1d9cc;
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 120px;
}

.bg-map {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=800&q=80");
  background-size: cover;
  background-position: center;
  min-height: 320px;
  border-radius: 24px;
  background-color: #d5d2c8;
}

.bg-library {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=800&q=80");
  background-size: cover;
  background-position: center;
  min-height: 280px;
  border-radius: 24px;
  background-color: #d8d3c7;
}

.bg-desk {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=800&q=80");
  background-size: cover;
  background-position: center;
  min-height: 280px;
  border-radius: 24px;
  background-color: #d6d5d1;
}

.bg-notes {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=800&q=80");
  background-size: cover;
  background-position: center;
  min-height: 280px;
  border-radius: 24px;
  background-color: #dcd8cf;
}

.bg-laptop {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=800&q=80");
  background-size: cover;
  background-position: center;
  min-height: 280px;
  border-radius: 24px;
  background-color: #dcd8cf;
}

.bg-headphones {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=800&q=80");
  background-size: cover;
  background-position: center;
  min-height: 280px;
  border-radius: 24px;
  background-color: #d9d6cc;
}

.bg-coffee {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=800&q=80");
  background-size: cover;
  background-position: center;
  min-height: 280px;
  border-radius: 24px;
  background-color: #d7d2c9;
}

@media (max-width: 768px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .hero-text h1 {
    font-size: 30px;
  }
}
