@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&display=swap");

:root {
  --ink: #1a1a1a;
  --muted: #5a5f66;
  --cream: #f7f4ef;
  --sand: #efe6d8;
  --mist: #e7eef2;
  --forest: #2f4b3b;
  --brick: #b55a4a;
  --gold: #d8b26e;
  --line: #d9d3c8;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: var(--sand);
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 120px;
  background: var(--mist);
}

.hero-content {
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 3vw, 3.1rem);
  margin: 0 0 16px;
}

.hero-text p {
  max-width: 520px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  flex: 1;
  background: #cfd8df;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 80px 0;
}

.section.light {
  background: #fff;
}

.section.sand {
  background: var(--sand);
}

.section.dark {
  background: #1c2a23;
  color: #f8f6f1;
}

.section.dark .muted {
  color: #d6d0c5;
}

.section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  margin-bottom: 20px;
}

.muted {
  color: var(--muted);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1.1;
}

.split .media {
  flex: 0.9;
  background: #c9d4dd;
  border-radius: var(--radius);
  overflow: hidden;
}

.split .media img {
  width: 100%;
  height: 100%;
}

.offset-panel {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.offset-panel .panel {
  flex: 1;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.08);
}

.offset-panel .panel.highlight {
  background: var(--forest);
  color: #f7f3ec;
  transform: translateY(-24px);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: #fff;
  align-items: center;
}

.timeline-item span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.inline-cta {
  color: var(--brick);
  border-bottom: 1px solid var(--brick);
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}

.btn.light {
  background: #f8f6f1;
  color: #1c2a23;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 24px rgba(20, 20, 20, 0.08);
}

.card .img-frame {
  background: #d8e0e6;
  border-radius: 14px;
  overflow: hidden;
}

.card .img-frame img {
  width: 100%;
  height: 160px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brick);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial blockquote {
  margin: 0;
  padding: 18px 22px;
  border-left: 4px solid var(--gold);
  background: #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.metrics {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 180px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--line);
}

.metric strong {
  display: block;
  font-size: 1.3rem;
}

.form-wrap {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.form-card {
  flex: 1.2;
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 18px 34px rgba(20, 20, 20, 0.08);
}

.form-note {
  flex: 0.8;
  background: var(--mist);
  border-radius: var(--radius);
  padding: 26px;
}

.form-card label {
  display: block;
  font-weight: 600;
  margin: 14px 0 6px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.form-card button {
  margin-top: 18px;
}

.inline-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--brick);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.footer {
  padding: 40px 0 70px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-cols {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer small {
  display: block;
  color: var(--muted);
  margin-top: 12px;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 70px 0 40px;
}

.content-block {
  padding: 40px 0;
}

.content-block .card {
  box-shadow: none;
  border: 1px solid var(--line);
}

.contact-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-item {
  flex: 1 1 220px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .hero-content,
  .split,
  .offset-panel,
  .form-wrap {
    flex-direction: column;
  }

  .offset-panel .panel.highlight {
    transform: none;
  }
}
