@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --bg: #f6f6f4;
  --ink: #1d1f1e;
  --muted: #5b5f5d;
  --accent: #2f6f7b;
  --accent-strong: #214d56;
  --panel: #ffffff;
  --soft: #e7ecea;
  --warm: #efe7df;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

a:hover,
button:hover {
  text-decoration: none;
  filter: brightness(0.95);
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 24px 0 12px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  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.85rem;
  color: var(--muted);
  max-width: 280px;
}

.hero {
  padding: 32px 0 48px;
}

.split-section {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  background: var(--panel);
  padding: 32px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.panel.soft {
  background: var(--soft);
}

.panel.warm {
  background: var(--warm);
}

.panel h1,
.panel h2,
.panel h3 {
  margin: 0;
}

.hero-visual {
  flex: 1;
  border-radius: 18px;
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d9e0e3;
  min-height: 360px;
}

.section {
  padding: 36px 0;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: white;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: var(--accent-strong);
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid var(--accent-strong);
}

.image-frame {
  background-color: #dde2e6;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--panel);
  padding: 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.service-card img {
  border-radius: 12px;
  height: 170px;
}

.price {
  font-weight: 700;
  color: var(--accent-strong);
}

.form-panel {
  background: var(--panel);
  padding: 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.95rem;
  font-weight: 600;
}

input,
select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9cecc;
  font-family: inherit;
}

.bg-process {
  background-image: url("https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #e1e7e4;
  padding: 44px 0;
  border-radius: 18px;
}

.bg-process .panel {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.tools-visual {
  background-color: #dfe5e3;
  border-radius: 16px;
  overflow: hidden;
}

.tools-visual img {
  height: 100%;
}

.testimonial {
  font-style: italic;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-strong);
  color: white;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sticky-cta button {
  background: white;
  color: var(--accent-strong);
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 32px 0 40px;
  background: #f0f2f1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--panel);
  border-radius: 16px;
  padding: 16px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: white;
}

.cookie-reject {
  background: #d7d7d7;
  color: var(--ink);
}

@media (max-width: 900px) {
  .split-section {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
