* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f2937;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8vw;
  background: #f7f5f2;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cta-primary {
  background: #111827;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-outline {
  border: 1px solid #111827;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9;
  background: #ff6b4a;
  color: #111827;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.2);
}

.section {
  padding: 70px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section-alt {
  background: #fff;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split > div {
  flex: 1 1 320px;
}

.offset-card {
  background: #111827;
  color: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 22px 40px rgba(17, 24, 39, 0.3);
  margin-top: -40px;
}

.accent-panel {
  background: #ffe1c7;
  padding: 28px;
  border-radius: 24px;
}

.stat-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 200px;
  background: #fef3c7;
  padding: 20px;
  border-radius: 18px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff6b4a;
}

.testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
}

button {
  border: none;
  cursor: pointer;
}

.footer {
  margin-top: auto;
  padding: 40px 8vw;
  background: #111827;
  color: #f9fafb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #111827;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  max-width: 360px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.btn-accept {
  background: #ff6b4a;
  color: #111827;
}

.btn-reject {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.inline-link {
  text-decoration: underline;
}

.hero {
  padding-top: 40px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  max-width: 560px;
}

.floating-image {
  position: relative;
}

.floating-image::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: #ffe1c7;
  border-radius: 40px;
  z-index: -1;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .sticky-cta {
    position: static;
    margin: 0 8vw 24px;
    width: fit-content;
  }
}
