*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f1f1d;
  --muted: #5d5d57;
  --accent: #c3562f;
  --accent-dark: #8f3b1f;
  --soft: #f3efe9;
  --panel: #ffffff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fbfaf7;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 32px clamp(20px, 4vw, 64px) 16px;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 20px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-primary {
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease;
}

.cta-primary:hover {
  background: var(--accent-dark);
}

.cta-outline {
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section {
  padding: 64px clamp(20px, 5vw, 88px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.offset {
  padding-left: clamp(40px, 10vw, 160px);
}

.section.split {
  flex-direction: row;
  align-items: stretch;
  gap: 32px;
  flex-wrap: wrap;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  background: var(--panel);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.panel.soft {
  background: var(--soft);
  box-shadow: none;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  font-size: 18px;
  max-width: 520px;
  margin: 0;
}

.hero-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 260px;
}

.hero-visual img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.tagline {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 14px;
  background: #fff;
  border-radius: 999px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.metrics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.metric {
  min-width: 140px;
}

.metric strong {
  display: block;
  font-size: 24px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 18px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  align-items: flex-start;
  flex-wrap: wrap;
}

.card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 18px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 18px;
}

.service strong {
  font-size: 18px;
}

.price {
  color: var(--accent-dark);
  font-weight: 700;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5d1ca;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 32px clamp(20px, 5vw, 88px);
  background: #1f1f1d;
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 10;
}

.cookies-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  max-width: 320px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 9;
}

.cookies-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
}

.hero-inline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}

.image-stack {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-stack img {
  width: min(220px, 40vw);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.section-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.section-title span {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
}

.note {
  padding: 14px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px dashed #c1b7ab;
}

@media (max-width: 900px) {
  .section.split,
  .section.split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
