* {
  box-sizing: border-box;
}

:root {
  --ink: #1d1a1a;
  --muted: #5b5450;
  --accent: #4a3af0;
  --accent-soft: #efeefe;
  --sand: #f7f1eb;
  --paper: #fffaf6;
  --line: rgba(29, 26, 26, 0.1);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  padding: 28px 6vw 10px;
}

.split-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  color: var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px 6vw 60px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -40px;
  right: 8vw;
  width: 180px;
  height: 180px;
  background: var(--accent-soft);
  border-radius: 40% 60% 70% 30%;
  z-index: 0;
}

.hero-content,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0 0 12px;
}

.hero p {
  max-width: 520px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: #fff;
  font-weight: 600;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.section {
  padding: 60px 6vw;
  position: relative;
}

.section.light {
  background: var(--sand);
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 16px;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: #fff;
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(20, 20, 20, 0.08);
}

.overlap {
  margin-top: -36px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.service-card strong {
  font-size: 1.1rem;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 12px;
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
}

.form-wrap {
  background: #fff;
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 30px 50px rgba(10, 10, 10, 0.08);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 30px 6vw 50px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 20px 40px rgba(74, 58, 240, 0.3);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #1f1b1b;
  color: #fff;
  padding: 16px;
  border-radius: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #fff;
  color: #1f1b1b;
}

.cookie-reject {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.page-hero {
  padding: 50px 6vw 30px;
  background: linear-gradient(120deg, #f3eefe, #fff4ec);
}

.page-hero h1 {
  margin: 0 0 10px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-media {
    margin-left: auto;
    max-width: 440px;
  }

  .asym-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .two-col {
    flex-direction: row;
    align-items: stretch;
  }

  .cards {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }

  .offset-right {
    margin-left: 60px;
  }

  .offset-left {
    margin-right: 60px;
  }
}
