/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #141216;
  --muted: #6f6a75;
  --accent: #b100b8;
  --accent-dark: #7a007e;
  --soft: #f5f0f7;
  --light: #ffffff;
  --shadow: 0 18px 40px rgba(20, 18, 22, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--light);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

main {
  overflow: hidden;
}

/* Layout */
.page {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 0 6vw 96px;
}

.top-wrap {
  padding: 32px 6vw 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 360px;
  padding: 48px 32px 40px;
  background: var(--soft);
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
  top: 18px;
}

.hero-image {
  flex: 1 1 360px;
  position: relative;
}

.hero-image img {
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  right: 18px;
  bottom: -18px;
  background: var(--accent);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 18px;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}

.section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.section.asymmetric-left {
  flex-direction: row-reverse;
}

.section-content {
  flex: 1 1 360px;
  padding: 28px 24px;
}

.section-card {
  flex: 1 1 320px;
  padding: 32px;
  background: var(--light);
  border-radius: 26px;
  box-shadow: var(--shadow);
  position: relative;
}

.section-card.offset {
  top: -22px;
}

.section-card.offset-low {
  top: 18px;
}

.section-image {
  flex: 1 1 300px;
}

.section-image img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.meta {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

h1, h2, h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 12px 0 16px;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  margin-bottom: 12px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--light);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: var(--soft);
  color: var(--ink);
  border: 1px solid rgba(20, 18, 22, 0.15);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.inline-link {
  font-weight: 600;
  color: var(--accent);
}

.panel {
  background: var(--soft);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
}

.panel .pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(177, 0, 184, 0.12);
  color: var(--accent-dark);
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-item span {
  font-size: 1.2rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--light);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 18px;
  margin-bottom: 12px;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonial {
  flex: 1 1 220px;
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 240px;
  background: var(--light);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(177, 0, 184, 0.2);
  position: relative;
}

.price-tag {
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 700;
}

.form-wrap {
  background: var(--light);
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(20, 18, 22, 0.15);
  font-size: 0.98rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 22px;
  background: var(--accent);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 20;
}

.footer {
  padding: 48px 6vw 64px;
  background: var(--ink);
  color: var(--light);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 22px;
  bottom: 22px;
  background: var(--light);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

/* Inner pages */
.inner-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: stretch;
  padding: 36px;
  background: var(--soft);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.inner-hero img {
  border-radius: 22px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.split > div {
  flex: 1 1 280px;
}

@media (max-width: 860px) {
  .hero-text {
    top: 0;
  }

  .section-card.offset,
  .section-card.offset-low {
    top: 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
