* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1a1f2b;
  --muted: #5c667a;
  --accent: #1f6feb;
  --accent-dark: #1451b8;
  --warm: #f5f1ea;
  --cool: #eef3f9;
  --shade: #0f172a;
  --card: #ffffff;
  --line: #dde3ee;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 8px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 48px 6vw 80px;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 320px;
  min-width: 280px;
}

.split-visual {
  flex: 1 1 320px;
  min-width: 280px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 16px;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 0 0 16px;
}

h3 {
  margin: 0 0 8px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-light {
  background: #ffffff;
  color: var(--accent);
  border-color: #ffffff;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--cool);
  font-size: 0.82rem;
  color: var(--muted);
}

.panel {
  padding: 28px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.06);
}

.panel.warm {
  background: var(--warm);
  border-color: #f0e7d7;
}

.panel.cool {
  background: var(--cool);
  border-color: #d9e5f5;
}

.panel.dark {
  background: var(--shade);
  color: #ffffff;
  border-color: #0b1120;
}

.panel.dark p,
.panel.dark .eyebrow {
  color: #cbd5f5;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.service-row span {
  color: var(--muted);
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.85rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #d2ddf2;
  background: #f3f7ff;
}

.split-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.split-note img {
  width: 46px;
}

.footer {
  padding: 40px 6vw 60px;
  background: #0e1626;
  color: #ffffff;
}

.footer a {
  color: #b8c4dd;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.legal {
  font-size: 0.85rem;
  color: #b8c4dd;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
  display: none;
  z-index: 10;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  padding: 40px 0 10px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  padding: 24px;
  border-radius: 16px;
  background: var(--cool);
}

@media (min-width: 860px) {
  .cookie-banner.active {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 720px) {
  .nav-links {
    justify-content: flex-start;
  }

  .sticky-cta {
    position: relative;
    top: 0;
  }
}
