@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --bg: #f6f4f1;
  --ink: #1f2528;
  --muted: #5f6b70;
  --accent: #1f6f8b;
  --accent-dark: #164f63;
  --sand: #e9e1d7;
  --green: #2f6b3f;
  --card: #ffffff;
  --border: #d9d4cc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.topbar {
  padding: 20px 24px;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background: var(--sand);
  border-radius: 14px;
  color: var(--muted);
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1668097613569-3405bb63262b?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 70px 60px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  background-color: #c7d6db;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 37, 40, 0.55);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  color: #ffffff;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero p {
  margin-bottom: 24px;
  color: #f1f1f1;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 24px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  color: #ffffff;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: #e7f0f3;
  color: var(--accent-dark);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  margin: 60px 0;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 340px;
}

.split .media {
  flex: 1 1 320px;
  background: #d9e3e4;
  padding: 18px;
  border-radius: 22px;
}

.offset-card {
  background: var(--card);
  border-radius: 26px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-left: 40px;
}

.offset-card h2 {
  margin-top: 0;
}

.process-image {
  background: #cfd8d6;
  padding: 16px;
  border-radius: 20px;
}

.services {
  margin: 80px 0;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-image {
  border-radius: 16px;
  overflow: hidden;
  background: #d4dee0;
}

.price {
  font-weight: 700;
  color: var(--green);
}

.trust {
  margin: 70px 0;
  padding: 50px;
  border-radius: 28px;
  background-image: url("https://images.unsplash.com/photo-1685555807896-328ac539d6a1?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d0d6d1;
  color: #ffffff;
  position: relative;
}

.trust::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 34, 38, 0.6);
  border-radius: 28px;
}

.trust-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

.highlight {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 16px;
  border-radius: 20px;
}

.form-wrap {
  background: var(--card);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid var(--border);
  margin-top: 60px;
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 14px;
}

button {
  padding: 12px 18px;
  border-radius: 20px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

button:hover,
button:focus {
  background: var(--accent-dark);
}

.form-message {
  font-size: 14px;
  color: var(--accent-dark);
}

.footer {
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-block {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--border);
  margin: 40px 0;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 12px 14px;
  border-radius: 26px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  background: var(--sand);
  border-radius: 24px;
  padding: 40px;
  margin: 40px 0;
}

.muted {
  color: var(--muted);
}

@media (max-width: 768px) {
  .hero {
    padding: 50px 28px;
  }

  .offset-card {
    margin-left: 0;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    justify-content: space-between;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
  }
}
