* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #111114;
  --muted: #5a5a63;
  --accent: #2f5cff;
  --accent-soft: #e6ecff;
  --sand: #f7f3ee;
  --stone: #f0f1f6;
  --olive: #e8efe7;
  --edge: #dedee6;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  padding: 24px 6vw 12px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  padding: 6px 12px;
  background: var(--sand);
  border: 1px solid var(--edge);
  font-size: 0.85rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 32px 6vw 48px;
  align-items: center;
}

.hero-copy {
  flex: 1 1 320px;
  max-width: 560px;
}

.hero-visual {
  flex: 1 1 320px;
  min-height: 360px;
  background: #dfe5f0;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-row.spaced {
  margin-top: 32px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.btn:hover {
  background: #1e1e26;
}

.btn.secondary:hover {
  background: var(--stone);
}

.section {
  padding: 48px 6vw;
}

.section.alt {
  background: var(--stone);
}

.section.soft {
  background: var(--olive);
}

.section.sand {
  background: var(--sand);
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.split.reverse {
  flex-direction: row-reverse;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid var(--edge);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: #dbe2ee;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tag {
  background: #ffffff;
  border: 1px solid var(--edge);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--edge);
  border-radius: 14px;
  background: #fff;
}

.price-item strong {
  font-size: 1.05rem;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

form {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--edge);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--edge);
  font-size: 0.95rem;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.sticky-cta button {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

footer {
  padding: 32px 6vw 48px;
  background: #0f1116;
  color: #f1f1f3;
}

footer a {
  color: #f1f1f3;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.legal {
  font-size: 0.85rem;
  color: #c6c7ce;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid var(--edge);
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 30;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 200px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 10px 16px;
}

.page-hero {
  padding: 32px 6vw;
  background: var(--stone);
}

.page-hero h1 {
  margin: 0 0 12px;
}

.plain-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content-block {
  max-width: 860px;
}

.image-block {
  background: #dbe2ee;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
}

.image-block img {
  width: 100%;
  height: 100%;
}
