* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e2328;
  background: #f6f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 12px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.78rem;
  background: #ffe0b5;
  color: #3a2b16;
  padding: 6px 10px;
  border-radius: 999px;
  text-transform: none;
}

.hero {
  position: relative;
  padding: 40px 0 80px;
}

.hero-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-right: 18px;
}

.hero-title {
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  line-height: 1.1;
}

.hero-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.15);
}

.hero-media {
  flex: 1 1 380px;
  position: relative;
  min-height: 320px;
}

.hero-media .frame {
  background: #d6d0c6;
  border-radius: 26px;
  overflow: hidden;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  bottom: -24px;
  left: 24px;
  background: #1e2328;
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 14px;
  max-width: 240px;
  font-size: 0.92rem;
}

.section {
  padding: 64px 0;
  position: relative;
}

.section-alt {
  background: #ffffff;
}

.bg-image-section {
  background-color: #31404a;
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-image-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 24, 0.55);
}

.bg-image-section .container {
  position: relative;
  z-index: 1;
}

.section-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.section-grid.reverse {
  flex-direction: row-reverse;
}

.section-copy {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-media {
  flex: 1 1 360px;
  background: #e3ddd2;
  border-radius: 22px;
  overflow: hidden;
}

.section-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid #1e2328;
  padding-bottom: 2px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 30px rgba(20, 20, 20, 0.1);
}

.service-media {
  background: #c9d6d8;
  height: 160px;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: #1f3c4b;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  gap: 18px;
  background: #f1ede6;
  border-radius: 16px;
  padding: 18px;
}

.step-number {
  font-weight: 700;
  font-size: 1.3rem;
  color: #b5552f;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(20, 20, 20, 0.12);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  border: 1px solid #c7c0b5;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.95rem;
  background: #fbfaf7;
}

.form-note {
  font-size: 0.85rem;
  color: #514c44;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: #1e2328;
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-light {
  background: #ffffff;
  color: #1e2328;
  border: 1px solid #1e2328;
}

.btn-ghost {
  background: transparent;
  color: #1e2328;
  border: 1px solid #bdb6aa;
}

.btn:focus {
  outline: 2px solid #1e2328;
  outline-offset: 2px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1e2328;
  color: #ffffff;
  padding: 14px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(20, 20, 20, 0.25);
  z-index: 20;
}

.sticky-cta p {
  font-size: 0.85rem;
  max-width: 160px;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonial {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 20px rgba(20, 20, 20, 0.08);
}

.footer {
  background: #1e2328;
  color: #f5f2ea;
  padding: 42px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-col {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  color: #1e2328;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.2);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 40px 0 30px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.info-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(20, 20, 20, 0.1);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.small-note {
  font-size: 0.85rem;
  color: #5b564f;
}

.image-frame {
  background: #d9d1c5;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 820px) {
  .sticky-cta {
    position: static;
    margin: 20px auto 0;
    width: min(360px, 92%);
  }
}
