* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2a30;
  --muted: #5b6b73;
  --surface: #f6f5f1;
  --accent: #2f6f6a;
  --accent-dark: #24524e;
  --warm: #ead9c2;
  --cool: #dfe6e9;
  --line: #d5d9dc;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  color: var(--accent-dark);
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 18px;
  background: var(--surface);
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  margin: 64px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.split-media {
  flex: 1 1 50%;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--cool);
  min-height: 320px;
  position: relative;
}

.image-frame {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--cool);
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-process {
  background-image: url("https://images.unsplash.com/photo-1493666438817-866a91353ca9?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.bg-model {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.section-title {
  font-size: 30px;
  line-height: 1.2;
}

.muted {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.secondary:hover {
  background: var(--accent);
  color: #ffffff;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--line);
  align-items: center;
}

.card-media {
  width: 140px;
  height: 110px;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--warm);
  flex-shrink: 0;
}

.frame-cool {
  background-color: var(--cool);
}

.frame-warm {
  background-color: var(--warm);
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.form-wrap {
  background: var(--surface);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
}

.footer {
  background: #111c21;
  color: #f2f4f5;
  padding: 40px 24px;
  margin-top: 80px;
}

.footer a {
  color: #f2f4f5;
  text-decoration: underline;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-col {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--line);
}

.plain-email {
  font-weight: 600;
}

@media (max-width: 960px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin-top: 24px;
  }
}
