* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #15161a;
  --muted: #5a5f6a;
  --accent: #2a6cff;
  --accent-dark: #1b3f99;
  --soft: #f5f4f1;
  --soft-2: #f0f5ff;
  --highlight: #ffe8cc;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

header {
  padding: 28px 8vw 12px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--ink);
  font-weight: 500;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  margin: 0 8vw 24px;
  display: flex;
  justify-content: flex-end;
  z-index: 2;
}

.sticky-cta button {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(42, 108, 255, 0.2);
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-bottom: 80px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 8vw;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split h1,
.split h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.15;
}

.split h3 {
  font-size: 1.5rem;
}

.split p {
  color: var(--muted);
  max-width: 560px;
}

.split .tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--accent-dark);
  font-weight: 600;
}

.split .cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.split.bg-soft {
  background: var(--soft);
}

.split.bg-soft-2 {
  background: var(--soft-2);
}

.split.bg-highlight {
  background: var(--highlight);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  height: 180px;
  object-fit: cover;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.testimonial {
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  border-left: 4px solid var(--accent);
}

.form-shell {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-shell label {
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d6d8df;
  border-radius: 10px;
  font-size: 1rem;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--soft-2);
  padding: 10px 12px;
  border-radius: 10px;
}

.inline-cta {
  font-weight: 600;
}

footer {
  padding: 40px 8vw;
  background: #0f1425;
  color: #d4d7e2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer a {
  color: #d4d7e2;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--ink);
  color: var(--white);
  padding: 16px;
  border-radius: 14px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: var(--white);
}

.cookie-reject {
  background: #353848;
  color: var(--white);
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split-inner,
  .split figure {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }
}
