@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #1f2a24;
  --muted: #4b5b52;
  --accent: #2f7a53;
  --soft: #eef3ef;
  --warm: #f6f2ea;
  --line: #d6e0d8;
  --card: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fdfdfc;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 16px;
  background: #f7faf6;
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 15px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
}

.split-section {
  display: flex;
  align-items: stretch;
  gap: 36px;
  padding: 64px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1;
  min-width: 0;
}

.split-text h1,
.split-text h2 {
  margin: 0 0 16px;
  font-weight: 700;
}

.split-text p {
  margin: 0 0 18px;
  color: var(--muted);
}

.hero-home {
  background-color: #e7efe9;
}

.hero-media {
  background-color: #dfe9e2;
  border-radius: 18px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.process-section {
  background: var(--soft);
}

.model-section {
  background: #f9f6f1;
}

.media-box {
  background-color: #dfe9e2;
  border-radius: 18px;
  overflow: hidden;
}

.media-box img {
  width: 100%;
  height: 100%;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 16px;
  align-items: center;
}

.card-media {
  width: 140px;
  height: 110px;
  background-color: #e0e9e2;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.card-text h3 {
  margin: 0 0 6px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.trust-section {
  background-color: #e5ede7;
}

.trust-panel {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 320px;
}

.testimonial {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.testimonial:last-child {
  border-bottom: none;
}

.form-section {
  background: #f4f8f5;
}

.form-card {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 24px;
}

.form-card label {
  display: block;
  font-weight: 600;
  margin: 12px 0 6px;
}

.form-card select,
.form-card input,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.form-status {
  min-height: 24px;
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.site-footer {
  background: #f3f7f4;
  padding: 32px 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col h4 {
  margin: 0 0 10px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.disclaimer {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(31, 42, 36, 0.12);
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 70px 0;
  background-color: #e7efe9;
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-contact {
  background-color: #f4f8f5;
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.86);
  padding: 24px;
  border-radius: 16px;
  max-width: 560px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.service-media {
  width: 160px;
  height: 110px;
  background-color: #e0e9e2;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-media img {
  width: 100%;
  height: 100%;
}

.legal-section {
  padding: 60px 0;
}

.legal-section h1 {
  margin-bottom: 20px;
}

.info-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 20px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .split-section {
    flex-direction: column;
  }

  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
  }
}
