* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #15161a;
  --muted: #5b5f6b;
  --accent: #6d4bff;
  --accent-dark: #5032dc;
  --surface: #f5f3ff;
  --sand: #faf7f1;
  --leaf: #e8f5ef;
  --sunset: #fdeedc;
  --line: #e3e1eb;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

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: 28px 6vw;
  gap: 24px;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 600;
  background: #fff;
}

.section {
  padding: 70px 6vw;
  position: relative;
  overflow: hidden;
}

.section.tight {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.sand {
  background: var(--sand);
}

.section.surface {
  background: var(--surface);
}

.section.leaf {
  background: var(--leaf);
}

.section.sunset {
  background: var(--sunset);
}

.section h2 {
  font-size: clamp(1.7rem, 2vw, 2.4rem);
  margin-bottom: 16px;
}

.section p {
  color: var(--muted);
}

.grid-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.hero-content {
  flex: 1 1 320px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content .hero-cta {
  display: inline-flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.primary:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--ink);
}

.btn.ghost {
  background: transparent;
  color: var(--accent-dark);
}

.hero-image {
  flex: 1 1 320px;
  position: relative;
}

.hero-image img {
  border-radius: 24px;
  box-shadow: 0 24px 45px rgba(13, 17, 31, 0.2);
}

.hero-badge {
  position: absolute;
  right: -10px;
  bottom: 18px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(13, 17, 31, 0.15);
  font-size: 0.9rem;
}

.offset-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.offset-panel .panel {
  flex: 1 1 280px;
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 30px rgba(17, 20, 34, 0.08);
  transform: translateY(-12px);
}

.offset-panel .panel.alt {
  transform: translateY(18px);
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.stat-card {
  flex: 1 1 160px;
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 14px;
  height: 140px;
  object-fit: cover;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 14px;
}

.split-visual {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split-visual .image-stack {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-stack img {
  border-radius: 18px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.price-item span {
  font-weight: 700;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: 26px;
}

.form-panel label {
  display: block;
  font-weight: 600;
  margin: 14px 0 6px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
}

.footer {
  padding: 42px 6vw;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(17, 20, 34, 0.2);
  z-index: 40;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 16px;
  max-width: 320px;
  z-index: 50;
  box-shadow: 0 16px 30px rgba(17, 20, 34, 0.15);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.page-intro {
  max-width: 680px;
}

.plain-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.plain-list li {
  list-style: none;
  padding-left: 16px;
  position: relative;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.sidebar-callout {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.sidebar-callout .side {
  flex: 1 1 220px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.hero-strip span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.85rem;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.service-row .service-info {
  flex: 1 1 280px;
}

.service-row .service-price {
  font-weight: 700;
  font-size: 1.2rem;
}

.small-note {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-image {
    order: -1;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    text-align: center;
  }
}
