* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #0f1a2b;
  --muted: #5b6372;
  --accent: #ff6a3d;
  --accent-dark: #d94c26;
  --mist: #f4f2ef;
  --sky: #cfe5f6;
  --sage: #dbe7d4;
  --plum: #e9d5f5;
  --line: #dde1e7;
  --shadow: 0 20px 50px rgba(15, 26, 43, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fffaf5;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding: 40px 5vw 140px;
  position: relative;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 18px 5vw 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.brand span {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
  font-weight: 500;
}

.nav-links a {
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom: 1px solid var(--ink);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split-row.reverse {
  flex-direction: column-reverse;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 60px 6vw;
  background: var(--mist);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -60px;
  width: 260px;
  height: 260px;
  background: var(--plum);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.tag {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offset-card {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  position: relative;
}

.offset-card.shift {
  margin-left: auto;
  margin-top: -40px;
  width: min(540px, 100%);
}

.panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--sky);
  padding: 32px;
  border-radius: 24px;
}

.panel img {
  border-radius: 18px;
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.grid-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.grid-card span {
  font-weight: 600;
  color: var(--accent-dark);
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--sage);
  padding: 32px;
  border-radius: 24px;
}

.metric {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 1.1rem;
  font-weight: 600;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.price-card strong {
  font-size: 1.6rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border-left: 6px solid var(--accent);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 5vw;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.plain {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--line);
}

.content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px 5vw 120px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: 16px;
  background: var(--mist);
}

@media (min-width: 900px) {
  .split-row,
  .split-row.reverse {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .split-row.reverse .panel {
    order: 2;
  }

  .grid-cards {
    flex-direction: row;
  }

  .grid-card,
  .price-card {
    flex: 1;
  }

  .metrics {
    flex-direction: row;
  }

  .metric {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing {
    flex-direction: row;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-links {
    flex-direction: row;
    gap: 18px;
  }

  .contact-card {
    flex: 1;
  }
}
