* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1d1f24;
  --muted: #5a6470;
  --accent: #2b7a6f;
  --accent-dark: #235f57;
  --cream: #f5f2ec;
  --fog: #eef2f4;
  --sand: #f4efe6;
  --rose: #f7ece9;
  --shadow: 0 18px 45px rgba(18, 20, 24, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 8px;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  background: var(--fog);
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 40px 6vw 64px;
  background-image: url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 30px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid #ffffff;
}

main {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-bottom: 80px;
}

.section {
  padding: 0 6vw;
}

.section-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px;
  border-radius: 28px;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.section-block.alt {
  background: var(--rose);
}

.scene-bg {
  background-image: url("https://images.unsplash.com/photo-1727681200732-0086492c217d?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHw5fHxWeWJhdmVuJUMzJUFEJTIwcHJvJTIwa2xpZG4lQzMlQkQlMjAlQzUlQkVpdm90JTIwcyUyMG1hemwlQzMlQUQlQzQlOERreXxjc3wwfDB8fHwxNzgyMjQwOTUyfDA&ixlib=rb-4.1.0&q=80&w=1080");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.scene-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 24, 28, 0.45);
}

.scene-bg > * {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .visual {
  flex: 1 1 320px;
}

.img-wrap {
  background: #e6e3dd;
  border-radius: 20px;
  overflow: hidden;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e0e4e7;
  font-size: 13px;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.story-card {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(20, 20, 28, 0.08);
}

.quote {
  font-style: italic;
  background: var(--fog);
  padding: 18px 22px;
  border-radius: 18px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  border-radius: 22px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(20, 20, 28, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-panel {
  background: var(--cream);
  padding: 32px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d4d9dd;
  font-size: 15px;
  background: #ffffff;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.form-row > div {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(18, 20, 24, 0.2);
  z-index: 10;
}

.sticky-cta a {
  font-weight: 600;
  color: var(--accent-dark);
}

footer {
  padding: 40px 6vw 60px;
  background: #1e2326;
  color: #ffffff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-col a {
  color: #ffffff;
  text-decoration: underline;
}

.legal {
  font-size: 12px;
  color: #d7dde2;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 16px 32px rgba(12, 12, 18, 0.2);
  z-index: 20;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1 1 auto;
  padding: 10px 12px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-reject {
  background: #e6eaee;
  color: var(--ink);
}

.page-hero {
  padding: 40px 6vw;
  background: var(--fog);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content {
  padding: 0 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.content-section {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 22px rgba(18, 20, 24, 0.08);
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

@media (max-width: 720px) {
  .sticky-cta {
    position: static;
    margin: 20px 6vw 0;
    justify-content: center;
  }

  header {
    padding-bottom: 16px;
  }
}
