* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #101418;
  --muted: #5b6470;
  --paper: #f4f1ec;
  --accent: #8b4dff;
  --accent-dark: #5a2ad6;
  --sand: #f7efe6;
  --night: #0f1720;
  --cream: #fff7f0;
}

body {
  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: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0 18px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 30px 0 70px;
}

.hero-text {
  flex: 1.1;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text p {
  color: var(--muted);
  margin-bottom: 26px;
  font-size: 1.05rem;
}

.hero-media {
  flex: 0.9;
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 70%;
  height: 60%;
  background: var(--accent);
  border-radius: 20px;
  z-index: -1;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  border: 1px solid var(--ink);
}

.section {
  padding: 70px 0;
}

.section-sand {
  background: var(--sand);
}

.section-night {
  background: var(--night);
  color: #f4f6f9;
}

.section-cream {
  background: var(--cream);
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 280px;
}

.offset-card {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(16, 20, 24, 0.08);
  position: relative;
}

.offset-card::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 24px;
  width: 60px;
  height: 6px;
  border-radius: 4px;
  background: var(--accent);
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 36px rgba(15, 23, 32, 0.08);
}

.card h4 {
  font-size: 1.05rem;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 22px;
  background: #fff;
  border-radius: 18px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-dark);
  white-space: nowrap;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-index {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.gallery {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.gallery img {
  flex: 1 1 260px;
  height: 200px;
  object-fit: cover;
}

.testimonials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1 1 240px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 18px;
}

.form-wrap {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1 1 320px;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(16, 20, 24, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6dbe1;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  width: min(980px, 90%);
  margin: 0 auto;
  background: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 20px 50px rgba(16, 20, 24, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.footer {
  padding: 50px 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.policy-page {
  padding: 50px 0;
}

.policy-page h1 {
  margin-bottom: 16px;
}

.policy-page p {
  margin-bottom: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(16, 20, 24, 0.15);
  display: none;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 20;
}

.cookie-banner button {
  border: none;
  cursor: pointer;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
  }
}
