*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f6f4f1;
  --ink: #1a1a1a;
  --muted: #5b5b5b;
  --accent: #2b5d8a;
  --accent-2: #d18f4f;
  --panel: #ffffff;
  --sand: #efe7dc;
  --sage: #e3ebe6;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img.media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: var(--panel);
  border-bottom: 1px solid #e7e1d9;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.9rem;
}

.ad-label {
  font-size: 0.75rem;
  color: var(--muted);
  border: 1px solid #d6d0c9;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 60px 6vw;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: var(--panel);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-visual {
  flex: 1 1 360px;
  min-height: 340px;
  border-radius: 28px;
  background-color: #d9e2ef;
  overflow: hidden;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-quiet {
  background: #f0ede8;
  color: var(--ink);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.section {
  padding: 56px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section.soft {
  background: var(--sage);
}

.section.bg-photo-office {
  background-color: #7e8b96;
  background-image: url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  color: #fff;
}

.section.bg-photo-office .section-title,
.section.bg-photo-office p,
.section.bg-photo-office .inline-link {
  color: #fff;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card .img-frame {
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #d8e1df;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-2);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split .img-frame {
  flex: 1 1 300px;
  min-height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #d7dbe3;
}

.split .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: #f7f1ea;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.form-shell {
  background: var(--panel);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d8d2ca;
  background: #fff;
  font-family: inherit;
}

.form-shell textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-actions {
  display: flex;
  justify-content: flex-start;
}

.inline-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.quote {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 40px;
  background: #1f1f1f;
  color: #f5f5f5;
}

.footer a {
  color: #f5f5f5;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d9d9d9;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  text-decoration: none;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.legal-block {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.callout {
  background: #fff4e7;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.align-right {
  align-items: flex-end;
  text-align: right;
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    position: static;
    margin: 20px 6vw 0;
    display: inline-flex;
  }
}
