* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2a2e;
  --muted: #5c6b6f;
  --accent: #0f766e;
  --accent-dark: #0b4f4a;
  --sand: #f5f1ec;
  --mist: #eef4f3;
  --stone: #e4ddd6;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(19, 28, 31, 0.15);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrap {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 28px 0 90px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 8px 0 24px;
}

.brand {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}

.nav a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav a:hover {
  color: var(--accent);
}

.ad-label {
  font-size: 12px;
  color: var(--accent-dark);
  background: var(--mist);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: center;
  position: relative;
}

.hero-text {
  flex: 1.1;
  background: var(--white);
  padding: 36px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  margin: 0 0 12px;
  font-size: 40px;
  line-height: 1.1;
}

.hero-text p {
  margin: 0 0 18px;
  color: var(--muted);
}

.hero-media {
  flex: 0.9;
  background: var(--stone);
  border-radius: 28px;
  overflow: hidden;
  transform: translateY(18px);
}

.hero-media img {
  width: 100%;
  height: 420px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.light {
  background: var(--white);
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

.section {
  margin: 70px 0;
}

.section-title {
  font-size: 28px;
  margin: 0 0 12px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
}

.panel.offset {
  margin-top: 32px;
  background: var(--mist);
  padding: 28px;
  border-radius: 22px;
}

.image-frame {
  background: var(--stone);
  border-radius: 22px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 320px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--white);
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card img {
  height: 180px;
  border-radius: 16px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: var(--mist);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.trust-band {
  background: var(--mist);
  padding: 34px;
  border-radius: 28px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.trust-image {
  flex: 0.7;
  background: var(--stone);
  border-radius: 20px;
  overflow: hidden;
}

.trust-image img {
  height: 260px;
  width: 100%;
}

.trust-content {
  flex: 1;
}

.form-wrap {
  background: var(--white);
  padding: 34px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cdd7d5;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.floating-cta button {
  background: none;
  border: none;
  color: inherit;
  font-weight: 600;
  cursor: pointer;
}

.floating-cta button:hover {
  opacity: 0.9;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--white);
  padding: 16px 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  background: var(--white);
  color: var(--ink);
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button.reject {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.footer {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid #d7d0c9;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

.footer a:hover {
  color: var(--accent);
}

.policy {
  background: var(--white);
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.bg-layer {
  background: url("https://images.pexels.com/photos/19895883/pexels-photo-19895883.jpeg") center/cover no-repeat;
  background-color: var(--stone);
  padding: 46px;
  border-radius: 28px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.bg-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 34, 40, 0.55);
}

.bg-layer > * {
  position: relative;
  z-index: 2;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .floating-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
