* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d2433;
  --muted: #5d6b82;
  --accent: #2b6cf6;
  --accent-dark: #214fb9;
  --soft: #f4f6fb;
  --warm: #fff7ef;
  --leaf: #eef6f0;
  --line: #e0e6f0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  width: 100%;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand strong {
  font-size: 1.2rem;
  letter-spacing: 0.4px;
}

.brand span {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  padding: 4px 10px;
  background: var(--soft);
  border-radius: 999px;
  color: var(--ink);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: #ffffff;
  background: var(--accent);
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta.secondary {
  background: transparent;
  color: var(--accent);
}

.cta:hover,
.cta:focus {
  transform: translateY(-1px);
  background: var(--accent-dark);
  color: #ffffff;
}

.section {
  padding: 72px 0;
}

.section.soft {
  background: var(--soft);
}

.section.warm {
  background: var(--warm);
}

.section.leaf {
  background: var(--leaf);
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  min-width: 280px;
}

.split .visual {
  flex: 1 1 320px;
  min-width: 280px;
  border-radius: 24px;
  overflow: hidden;
  background: #dfe7f5;
}

.split .visual img {
  width: 100%;
  height: 100%;
}

.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 3vw, 3.3rem);
  margin: 12px 0 18px;
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  margin-bottom: 16px;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  font-size: 0.9rem;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.card .card-media {
  height: 180px;
  background: #e7edf8;
}

.card .card-media img {
  width: 100%;
  height: 100%;
}

.card .card-body {
  padding: 18px;
}

.card .price {
  font-weight: 600;
  color: var(--ink);
  margin-top: 10px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.timeline-step {
  font-weight: 700;
  color: var(--accent);
}

.quote {
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: #ffffff;
}

.quote + .quote {
  margin-top: 16px;
}

.form-wrap {
  border-radius: 24px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

button {
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.footer {
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.cta-row {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.mt-24 {
  margin-top: 24px;
}

.mt-28 {
  margin-top: 28px;
}

.footer-column {
  min-width: 220px;
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  z-index: 30;
}

.sticky-cta span {
  padding-left: 10px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .cta.secondary:hover,
.cookie-actions .cta.secondary:focus {
  background: #eef2ff;
  color: var(--accent-dark);
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 240px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.service-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-item {
  flex: 1 1 260px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.service-item strong {
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
