* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #141a1f;
  --muted: #5f6b76;
  --surface: #f5f6f7;
  --accent: #2f6b5a;
  --accent-soft: #e6f0ed;
  --warm: #f3efe9;
  --dark: #101417;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 5vw 10px;
  background: var(--dark);
  color: #ffffff;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand-name {
  font-size: 1.2rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: #dfe7ea;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom-color: #ffffff;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 50px 5vw 70px;
  background: var(--warm);
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-text h1 {
  font-size: clamp(2rem, 2.8vw, 3rem);
  margin: 0 0 18px;
}

.hero-text p {
  margin: 0 0 20px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  border: 1px solid var(--accent);
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.hero-media {
  flex: 1 1 320px;
  min-height: 320px;
  background-color: #c9d3d1;
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
}

.section {
  padding: 60px 5vw;
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 16px;
}

.muted {
  color: var(--muted);
}

.offset-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  position: relative;
}

.offset-card {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 22px 40px rgba(16, 20, 23, 0.1);
}

.offset-image {
  flex: 1 1 300px;
  background-color: #dde4e2;
  border-radius: 24px;
  overflow: hidden;
}

.offset-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.service-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--surface);
  border-radius: 22px;
  padding: 22px;
}

.image-frame {
  background-color: #dfe4e2;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.service-card img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 18px;
}

.service-details {
  flex: 1 1 260px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.banner-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--dark);
  color: #ffffff;
  padding: 50px 5vw;
}

.banner-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.banner-image {
  flex: 1 1 280px;
  min-height: 220px;
  border-radius: 20px;
  background-color: #2c353d;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
}

.form-section {
  background: var(--accent-soft);
  padding: 60px 5vw 80px;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  max-width: 680px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9d3d1;
  font-size: 1rem;
  font-family: inherit;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(16, 20, 23, 0.2);
}

.page-content {
  flex: 1 1 auto;
}

.footer {
  padding: 40px 5vw;
  background: #f2f3f4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.legal-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(16, 20, 23, 0.18);
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.simple-hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 50px 5vw;
  background: #ffffff;
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.hero-strip img {
  width: 100%;
  max-width: 420px;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
}

.page-image {
  width: 100%;
  max-width: 520px;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  background-color: #d4dcd9;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--surface);
  padding: 22px;
  border-radius: 18px;
}

.policy-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 880px;
}

.policy-wrap h2 {
  margin-bottom: 8px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #e1e6e5;
  border-radius: 18px;
  padding: 18px;
}

.price-item span {
  flex: 1 1 240px;
}

@media (max-width: 720px) {
  .sticky-cta {
    left: 16px;
    right: 16px;
  }
}
