* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f5f2ee;
  --bg-alt: #e9eef2;
  --accent: #2b5f5d;
  --accent-2: #d6b25a;
  --text: #1f2426;
  --muted: #5b676e;
  --card: #ffffff;
  --border: #d2d8de;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

img {
  object-fit: cover;
  display: block;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  max-width: 380px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.hero-title {
  font-size: 36px;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 28px;
  cursor: pointer;
  font-weight: 600;
  display: inline-block;
  text-align: center;
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 12px 22px;
  border-radius: 28px;
  cursor: pointer;
  font-weight: 600;
  display: inline-block;
  text-align: center;
}

.hero-image {
  flex: 1;
  border-radius: 16px;
  background-color: #dfe5e9;
  min-height: 280px;
  background-size: cover;
  background-position: center;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
  margin: 42px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-image {
  flex: 1;
  background-color: #e0e6ea;
  border-radius: 18px;
  padding: 16px;
}

.split-image img {
  width: 100%;
  height: 260px;
  border-radius: 12px;
}

.info-band {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--bg-alt);
  padding: 24px;
  border-radius: 18px;
  margin: 42px 0;
}

.info-item {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 28px 0 42px;
}

.card-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  flex: 1 1 280px;
  background: var(--card);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.section-title {
  font-size: 24px;
  margin-bottom: 12px;
}

.form-wrap {
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.field {
  flex: 1;
  min-width: 220px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 15px;
}

.cta-bar {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 40px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 30;
}

.cta-bar button {
  background: #fff;
  color: var(--accent);
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
}

.footer {
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  max-width: 360px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 40;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 18px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: var(--bg-alt);
  color: var(--accent);
}

.image-panel {
  background-color: #dfe5e9;
  border-radius: 16px;
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 220px;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
}

.bg-workflow {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.note-panel {
  background: rgba(255, 255, 255, 0.88);
  padding: 18px;
  border-radius: 16px;
  max-width: 480px;
}

.background-section {
  display: flex;
  align-items: center;
  padding: 32px;
  border-radius: 20px;
  margin: 42px 0;
  background-size: cover;
  background-position: center;
  min-height: 220px;
}

.legal-page {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

@media (max-width: 900px) {
  .hero,
  .split {
    flex-direction: column;
  }

  .cta-bar {
    left: 16px;
    right: 16px;
    transform: none;
    justify-content: space-between;
  }
}
