* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #0d1b2a;
  --muted: #4a5c6a;
  --accent: #2f6fed;
  --accent-soft: #e8f0ff;
  --sand: #f7f4ef;
  --sun: #ffd79b;
  --emerald: #1f8f7a;
  --card: #ffffff;
  --shadow: 0 18px 48px rgba(13, 27, 42, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 24px 6vw 8px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
}

.section {
  padding: 68px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section.deep {
  background: #0f2741;
  color: #f8fbff;
}

.section.layered {
  background: linear-gradient(120deg, #fff 0%, var(--accent-soft) 100%);
  position: relative;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
}

h1 {
  font-size: clamp(2.3rem, 3vw, 3.6rem);
  margin: 14px 0 18px;
}

h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  color: var(--muted);
}

.section.deep p {
  color: rgba(248, 251, 255, 0.78);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.tag {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.dark {
  background: #0f2741;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.card {
  flex: 1 1 200px;
  background: var(--card);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  margin-bottom: 12px;
  border-radius: 12px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.card p {
  margin-bottom: 0;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.metric {
  flex: 1 1 160px;
  background: rgba(255, 255, 255, 0.12);
  padding: 18px;
  border-radius: 14px;
}

.metric strong {
  font-size: 1.6rem;
  display: block;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-radius: 14px;
  background: #f4f7ff;
}

.service-item span {
  font-weight: 600;
}

.service-item .price {
  color: var(--accent);
  font-weight: 700;
}

.form-card {
  background: var(--card);
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6dde5;
  font-family: inherit;
}

.form-field {
  flex: 1 1 240px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer {
  margin-top: auto;
  padding: 36px 6vw;
  background: #0f2741;
  color: #f1f5ff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  margin-top: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f2741;
  color: #f8fbff;
  padding: 16px 6vw;
  display: none;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-content {
  max-width: 760px;
}

.legal-content h1 {
  margin-bottom: 20px;
}

.legal-content ul {
  margin: 16px 0 16px 20px;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--muted);
}

@media (max-width: 780px) {
  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }

  .site-header {
    padding-bottom: 0;
  }
}
