* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1e1f23;
  --muted: #5b616d;
  --accent: #2a62f2;
  --accent-soft: #e7edff;
  --surface: #f6f7fb;
  --highlight: #ffefe2;
  --radius: 18px;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #eceef4;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--accent);
}

.hero {
  padding: 40px 6vw 20px;
}

.hero-shell {
  display: flex;
  flex-direction: column;
  gap: 26px;
  background: url("images/hero-wave.svg") no-repeat right top / cover;
  border-radius: 28px;
  padding: 32px;
  border: 1px solid #eef0f7;
}

.hero h1 {
  font-size: clamp(2.1rem, 3.5vw, 3.4rem);
  line-height: 1.2;
}

.hero p {
  max-width: 560px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(42, 98, 242, 0.25);
}

.btn-secondary {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: #c9d8ff;
}

.btn-outline {
  border-color: #d1d5e4;
  color: var(--ink);
  background: #ffffff;
}

.btn:hover {
  transform: translateY(-1px);
}

.split-section {
  padding: 40px 6vw;
}

.alt-surface {
  background: var(--surface);
}

.alt-highlight {
  background: #fff8f2;
}

.alt-dark {
  background: #121527;
  color: #ffffff;
}

.alt-dark .section-note,
.alt-dark .quote {
  color: #d5d8e6;
}

.alt-dark .btn-outline {
  border-color: #5a6280;
  color: #ffffff;
  background: transparent;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: column;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--highlight);
  font-size: 0.85rem;
  width: fit-content;
}

.section-title {
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
}

.section-note {
  color: var(--muted);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid #eceef4;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.service-price {
  font-weight: 700;
  font-size: 1.15rem;
}

.highlight-block {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.layered {
  position: relative;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 160px;
  height: 160px;
  background: url("images/dots.svg") no-repeat center / contain;
  opacity: 0.6;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.form-section {
  background: var(--accent-soft);
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cbd3e4;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

ul {
  padding-left: 18px;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 28px 6vw 36px;
  background: #0f1220;
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #101a37;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e1e4ef;
  box-shadow: 0 12px 30px rgba(15, 18, 32, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  cursor: pointer;
}

.page-header {
  padding: 40px 6vw 20px;
}

.page-header p {
  max-width: 540px;
  color: var(--muted);
}

@media (min-width: 900px) {
  .hero-shell {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-grid {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }
}
