* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1c22;
  --muted: #5a5f6b;
  --accent: #0f5f5a;
  --accent-soft: #e4f2ef;
  --surface: #ffffff;
  --panel: #f5f1ed;
  --border: #d6d9df;
  --shadow: 0 18px 40px rgba(17, 22, 32, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #f2f3f7;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: var(--surface);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-right: 1px solid var(--border);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand strong {
  font-size: 1.2rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: #f2e7d9;
  padding: 8px 10px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-weight: 600;
}

.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--panel);
  padding: 18px;
  border-radius: 18px;
  position: sticky;
  top: 24px;
}

.sidebar-cta button {
  width: 100%;
}

.main {
  flex: 1;
  padding: 36px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  background: var(--surface);
  padding: 32px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.alt {
  background: var(--panel);
  box-shadow: none;
}

.section.split {
  flex-direction: row;
  gap: 26px;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section .media {
  flex: 1;
}

.image-frame {
  width: 100%;
  min-height: 220px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #dbe7ea;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: stretch;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 0;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.button.secondary,
button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 8px 14px;
  background: #eef1f7;
  border-radius: 999px;
  font-size: 0.9rem;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  background: var(--surface);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--border);
}

.card .image-frame {
  min-height: 160px;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.timeline-step {
  width: 42px;
  height: 42px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #f6f7fb;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 220px;
}

.footer {
  background: #121419;
  color: #f1f2f4;
  padding: 26px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer small {
  color: #aeb3bf;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-hidden {
  display: none;
}

.bg-highlight {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-overlay {
  background: rgba(18, 22, 32, 0.68);
  padding: 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.list-columns ul {
  flex: 1 1 220px;
  margin: 0;
  padding-left: 18px;
}

.contact-block {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: #f6f1ea;
  padding: 18px;
  border-radius: 16px;
}

.muted {
  color: var(--muted);
}

.sticky-bar {
  position: sticky;
  bottom: 0;
  align-self: flex-start;
  margin-top: 12px;
  background: #fef7e8;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid #f1d9aa;
  display: flex;
  gap: 12px;
  align-items: center;
}

.note {
  background: #edf4ff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #c8daf6;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-cta {
    position: static;
    width: 100%;
  }

  .main {
    padding: 24px;
  }

  .section.split,
  .section.split.reverse,
  .hero {
    flex-direction: column;
  }
}
