* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --accent: #ff6a2b;
  --accent-dark: #d95018;
  --bg: #f6f4f0;
  --panel: #ffffff;
  --soft: #efe9e1;
  --line: #e4ddd4;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 0 6vw 120px;
}

.floating-nav {
  position: relative;
  margin: 32px 6vw 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.floating-nav .brand {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-nav .links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.floating-nav .links a {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding: 50px 0 40px;
}

.hero .hero-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero .hero-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.hero .hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1;
}

.hero .hero-card {
  background: var(--panel);
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 22px;
  max-width: 360px;
  align-self: flex-end;
  margin-right: 10%;
}

.hero .hero-image {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--soft);
  align-self: flex-start;
  max-width: 520px;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-size: 0.82rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn.secondary:hover {
  color: #fff;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split .panel {
  background: var(--panel);
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: 28px;
}

.offset {
  margin-left: 8%;
}

.offset-right {
  margin-right: 10%;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--panel);
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 22px;
}

.card img {
  border-radius: 16px;
  border: 1px solid var(--line);
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.metric {
  display: flex;
  gap: 16px;
  align-items: center;
}

.metric span {
  font-weight: 700;
  font-size: 1.4rem;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: var(--panel);
  border-radius: 20px;
  border: 1px solid var(--line);
}

.service-item .price {
  color: var(--accent);
  font-weight: 700;
}

.testimonial {
  background: var(--soft);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--line);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--panel);
  border-radius: 26px;
  border: 1px solid var(--line);
  padding: 26px;
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
}

.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 1rem;
}

.service-choice {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-choice label {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  background: var(--soft);
  border-radius: 14px;
  border: 1px solid var(--line);
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 28px;
  bottom: 28px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 5;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  color: var(--muted);
}

.footer .foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: var(--panel);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 14px 18px;
  display: none;
  gap: 16px;
  align-items: center;
  z-index: 6;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.cookie-banner.active {
  display: flex;
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-banner button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--soft);
  cursor: pointer;
}

.page-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  max-width: 520px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 760px;
}

@media (min-width: 900px) {
  .hero .hero-row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .stacked-cards {
    flex-direction: row;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 240px;
  }

  .metrics {
    flex-direction: row;
  }
}
