* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #101417;
  --muted: #4a5560;
  --accent: #0b4a6e;
  --accent-soft: #e3f1f8;
  --sand: #f6f2ee;
  --warm: #f0e6dc;
  --line: #d6dbe1;
  --shadow: 0 18px 36px rgba(16, 20, 23, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
  background: #fff;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--line);
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
}

.nav a {
  padding: 8px 10px;
  border-radius: 10px;
}

.nav a:hover {
  background: #fff;
}

.sidebar-note {
  background: #fff;
  padding: 14px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-size: 0.92rem;
  color: var(--muted);
}

.sidebar-note strong {
  color: var(--ink);
}

.main {
  flex: 1;
  padding: 36px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.flat {
  box-shadow: none;
  border: 1px solid var(--line);
}

.section.sand {
  background: var(--sand);
}

.section.warm {
  background: var(--warm);
}

.section.hero {
  background: linear-gradient(120deg, #f6f2ee 0%, #ffffff 60%);
}

.section.hero .hero-content {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.section.hero .hero-text {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section.hero .hero-image {
  flex: 1 1 220px;
  max-width: 360px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}

h1 {
  font-size: clamp(2rem, 2.8vw, 3.1rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.ghost {
  background: transparent;
  border: 1px dashed var(--accent);
  color: var(--accent);
}

.split {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 210px;
}

.card img {
  border-radius: 14px;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline .step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-badge {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote {
  font-style: italic;
  color: var(--ink);
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 14px 16px;
  border-radius: 12px;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  color: var(--ink);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font: inherit;
}

textarea {
  min-height: 110px;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.list-item img {
  width: 44px;
  flex-shrink: 0;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-box {
  flex: 1 1 200px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.footer {
  font-size: 0.85rem;
  color: var(--muted);
  padding-top: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 12;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
}

.cookie-actions .btn.secondary {
  background: #fff;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .main {
    padding: 28px 5vw 120px;
  }
}

@media (max-width: 640px) {
  .sidebar {
    gap: 16px;
  }

  .section {
    padding: 20px;
  }
}
