* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f4f1;
  --panel: #ffffff;
  --ink: #1e1f24;
  --muted: #5d616a;
  --accent: #2f5d62;
  --accent-soft: #dbe6e1;
  --warm: #f3efe8;
  --shadow: 0 20px 50px rgba(30, 31, 36, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--panel);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid #e7e2db;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.brand h1 {
  font-size: 20px;
  font-weight: 600;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 8px 10px;
  border-radius: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

nav a {
  font-weight: 500;
}

.sidebar .meta {
  margin-top: auto;
  font-size: 13px;
  color: var(--muted);
}

.content {
  flex: 1;
  padding: 36px 48px 120px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  background: var(--panel);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-text h2 {
  font-size: 34px;
  line-height: 1.2;
}

.hero-image {
  flex: 1;
  background: #e3e0da;
  border-radius: 20px;
  overflow: hidden;
}

.section {
  margin-top: 48px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-card {
  background: var(--panel);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  flex: 1;
}

.section-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.section-card p {
  color: var(--muted);
}

.media-block {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  min-height: 240px;
}

.bg-1 {
  background: #d8d5ce;
}

.bg-2 {
  background: #d6dad5;
}

.bg-3 {
  background: #d4d9df;
}

.bg-4 {
  background: #e1d9cf;
}

.bg-5 {
  background: #dcd8d0;
}

.bg-6 {
  background: #d6d2dd;
}

.bg-7 {
  background: #d8dbe0;
}

.bg-8 {
  background: #d7dbe4;
}

.bg-9 {
  background: #d9d4cc;
}

.bg-10 {
  background: #d1d7d8;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing {
  background: var(--warm);
  padding: 28px;
  border-radius: 24px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: var(--panel);
  border-radius: 16px;
}

.pricing-item span {
  font-weight: 600;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: var(--panel);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 16px;
}

.pill {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

.button.secondary {
  background: #f0ece6;
  color: var(--accent);
}

.inline-cta {
  font-weight: 600;
}

.form-wrap {
  background: var(--panel);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #dad3c9;
  font-size: 14px;
  background: #fff;
}

.footer {
  margin-top: 64px;
  padding: 28px;
  background: var(--panel);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer small {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--panel);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  top: 24px;
  background: #1f3e42;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  z-index: 8;
}

.legal-block {
  background: var(--panel);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e7e2db;
  }

  .content {
    padding: 32px 24px 120px;
  }

  .hero,
  .section {
    flex-direction: column;
  }

  .sticky-cta {
    top: auto;
    bottom: 110px;
  }
}
