:root {
  color-scheme: light;
  --ink: #1b1f2a;
  --ink-soft: #2e3341;
  --sand: #f4f1ec;
  --accent: #ff7b7b;
  --accent-deep: #6b5cff;
  --accent-warm: #ffcc66;
  --line: #d6d1c9;
  --shadow: 0 24px 60px rgba(16, 20, 28, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 0 6vw;
  position: relative;
}

.hero-card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-top: -60px;
}

.hero-copy {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0;
}

.hero-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.hero-media {
  flex: 1 1 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--ink);
  color: #ffffff;
  transition: transform 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button:hover {
  transform: translateY(-2px);
}

.section {
  padding: 0 6vw;
}

.split {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split .panel {
  flex: 1 1 280px;
}

.offset-panel {
  background: #ffffff;
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  margin-left: auto;
}

.texture-banner {
  background: #1b1f2a;
  color: #ffffff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 28px 6vw;
  background-image: url("assets/texture.svg");
  background-size: cover;
}

.cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 230px;
  background: #ffffff;
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: var(--radius-sm);
}

.blockquote {
  background: #ffffff;
  border-left: 6px solid var(--accent);
  padding: 22px;
  border-radius: var(--radius-sm);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.pricing-item strong {
  font-size: 1.05rem;
}

.form-block {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}

.form-grid label {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  align-self: flex-start;
  background: #ffffff;
  padding: 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 220px;
}

.footer {
  background: #10141c;
  color: #ffffff;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}

.banner-accent {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .hero-card {
    margin-top: 0;
  }

  .sticky-cta {
    position: static;
    max-width: none;
  }
}
