* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1c1f;
  --paper: #f7f3ee;
  --accent: #c9542b;
  --accent-dark: #8d3e23;
  --muted: #5a646e;
  --soft: #ece7e1;
  --soft-2: #e4edf2;
  --soft-3: #f3efe9;
  --highlight: #f8e6d8;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 24px 20px 80px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: var(--soft);
  font-size: 14px;
}

.top-bar span {
  font-weight: 600;
  color: var(--accent-dark);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 18px 20px 8px;
  border-bottom: 1px solid #d7d0c8;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-tagline {
  font-size: 13px;
  color: var(--muted);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

nav a {
  padding: 6px 0;
}

.ad-label {
  padding: 6px 0;
  font-weight: 600;
  color: var(--accent-dark);
}

.mag-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.mag-hero__text {
  flex: 1 1 320px;
  padding: 24px;
  background: var(--highlight);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mag-hero__text h1 {
  font-size: 34px;
  line-height: 1.2;
}

.mag-hero__text p {
  font-size: 16px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.hero-image {
  flex: 1 1 320px;
  min-height: 340px;
  background-color: #d4d8dc;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section--two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.section--two-col > div {
  flex: 1 1 260px;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
}

.mag-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.mag-columns .column {
  flex: 1 1 240px;
  background: var(--soft-3);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-card {
  background: #fff;
  border: 1px solid #e0d9d1;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-card .image-wrap {
  background: #dbe3e8;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight-strip {
  background: var(--soft-2);
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.bg-context {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 14px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.bg-context::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.bg-context > * {
  position: relative;
  z-index: 1;
}

.bg-globe {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  padding: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bg-globe::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 28, 31, 0.55);
}

.bg-globe > * {
  position: relative;
  z-index: 1;
}

.highlight-strip p {
  max-width: 560px;
  color: var(--muted);
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-item {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid #e3ded7;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-item span {
  font-weight: 600;
}

.testimonial {
  background: #fff;
  border-left: 3px solid var(--accent);
  padding: 16px 18px;
  font-style: italic;
}

.form-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2ddd6;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d8d2cb;
  font-size: 14px;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid #e0d9d1;
  border-radius: 999px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.sticky-cta span {
  font-size: 13px;
  color: var(--muted);
}

footer {
  background: var(--soft);
  padding: 28px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 16px;
  max-width: 360px;
  background: #fff;
  border: 1px solid #e0d9d1;
  border-radius: 12px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 auto;
}

.page-hero {
  background: var(--soft-2);
  padding: 24px;
  border-radius: 12px;
}

.split-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split-stack .stack-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid #e1dad2;
}

.address-block {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid #e1dad2;
}

.references {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 720px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
