* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2328;
  --muted: #5b6470;
  --accent: #1f6feb;
  --accent-2: #0f766e;
  --surface: #f4f1ec;
  --surface-2: #eef2f6;
  --surface-3: #f8f0e8;
  --border: #d6dbe1;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.8px;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.nav a {
  padding: 6px 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 320px;
}

.hero {
  padding: 48px 0 28px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.secondary {
  background: #fff;
  border-color: var(--border);
}

.section {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.section.alt {
  background: var(--surface-2);
  padding: 48px 0;
}

.section.deep {
  background: var(--surface-3);
  padding: 48px 0;
}

.bg-context {
  background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8fafc;
}

.bg-context .panel {
  background: rgba(15, 23, 42, 0.72);
  padding: 22px;
  border-radius: 12px;
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8fafc;
}

.bg-about .panel {
  background: rgba(15, 23, 42, 0.7);
  padding: 22px;
  border-radius: 12px;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.section p {
  margin-bottom: 14px;
  color: var(--muted);
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.8rem;
  color: var(--accent-2);
  margin-bottom: 10px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.card {
  flex: 1 1 260px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 16px 18px 20px;
}

.price {
  font-weight: 700;
  color: var(--accent);
  margin-top: 10px;
}

.img-frame {
  background: #dfe5ec;
  overflow: hidden;
}

.img-frame.alt {
  background: #d8e3de;
}

.img-frame.warm {
  background: #e9ddd0;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.list li {
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.quote {
  border-left: 4px solid var(--accent-2);
  padding-left: 16px;
  font-style: italic;
  color: var(--muted);
}

.form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
}

.footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 34px 20px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer a {
  color: #e2e8f0;
}

.footer small {
  color: #cbd5f5;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  display: none;
  z-index: 12;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 0.85rem;
}

.plain-link {
  color: var(--accent);
  text-decoration: underline;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
