* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2933;
  --muted: #5f6c7b;
  --accent: #d94a38;
  --accent-dark: #a33628;
  --sand: #f5efe9;
  --sky: #e4eef6;
  --olive: #e8efe4;
  --shadow: rgba(25, 35, 45, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  padding: 24px 6vw 12px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero {
  padding: 36px 6vw 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--sand);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 12px 30px var(--shadow);
}

.hero-image {
  background: #e4d9cf;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 20px 40px var(--shadow);
}

.hero-cta {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.section {
  padding: 56px 6vw;
}

.section-tight {
  padding: 36px 6vw;
}

.offset-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-panel {
  background: var(--sky);
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 16px 32px var(--shadow);
}

.offset-image {
  background: #d7e1ec;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
  margin-left: 6vw;
  margin-right: 0;
  box-shadow: 0 18px 36px var(--shadow);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.services-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 16px 30px var(--shadow);
}

.service-media {
  background: #f2e6db;
  border-radius: 14px;
  overflow: hidden;
  height: 180px;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.price-tag {
  background: var(--olive);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.story-panel {
  background: #fff7f1;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 14px 28px var(--shadow);
}

.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 24px var(--shadow);
}

.form-wrap {
  background: #1f2933;
  color: #fff;
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 20px 42px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.floating-note {
  background: var(--olive);
  padding: 18px;
  border-radius: 14px;
  max-width: 320px;
  margin-left: auto;
  margin-top: -60px;
  box-shadow: 0 16px 32px var(--shadow);
}

.footer {
  margin-top: auto;
  padding: 36px 6vw;
  background: #101418;
  color: #f4f4f4;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.92rem;
}

.disclaimer {
  font-size: 0.88rem;
  color: #cbd5e1;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  box-shadow: 0 12px 24px var(--shadow);
  cursor: pointer;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  color: #fff;
  padding: 18px 6vw;
  display: none;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #fbbf24;
  color: #1f2933;
}

.cookie-reject {
  background: transparent;
  border: 2px solid #fbbf24;
  color: #fbbf24;
}

.policy-section {
  padding: 44px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: #f8fafc;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 14px 28px var(--shadow);
}

.thanks-box {
  background: var(--sand);
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 16px 32px var(--shadow);
}

.image-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-block {
  background: #dfe7ee;
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
}

@media (min-width: 900px) {
  .hero-split {
    flex-direction: row;
    align-items: center;
  }

  .hero-card,
  .hero-image {
    flex: 1;
  }

  .offset-block {
    flex-direction: row;
    align-items: center;
  }

  .offset-panel {
    flex: 1.1;
  }

  .offset-image {
    flex: 0.9;
    margin-left: -40px;
  }

  .services-wrap {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 280px;
  }

  .split-row {
    flex-direction: row;
    align-items: stretch;
  }

  .trust-grid {
    flex-direction: row;
  }

  .trust-item {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .image-row {
    flex-direction: row;
  }

  .image-block {
    flex: 1;
  }
}
