* {
  box-sizing: border-box;
}

:root {
  --ink: #141414;
  --muted: #6b6b6b;
  --accent: #2b6fff;
  --accent-dark: #1146c2;
  --surface: #f6f4f1;
  --surface-deep: #ede7df;
  --highlight: #fff7e1;
  --border: #e2d9cf;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.top-nav {
  padding: 24px 0 8px;
}

.top-nav .nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: 0.94rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--ink);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.cta-button.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.cta-link {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  z-index: 30;
}

.hero {
  padding: 36px 0 60px;
}

.hero-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 14px 18px 0 rgba(0, 0, 0, 0.06);
}

.hero-visual {
  flex: 1 1 320px;
  position: relative;
}

.hero-visual img {
  border-radius: 24px;
}

.hero-visual .floating-card {
  position: absolute;
  left: -20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 16px 18px;
  border-radius: 16px;
  max-width: 220px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--surface);
}

.section.deep {
  background: var(--surface-deep);
}

.section .section-title {
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin-bottom: 18px;
}

.asym-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.asym-grid .card {
  flex: 1 1 240px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 6px 10px 0 rgba(0, 0, 0, 0.04);
}

.offset {
  margin-top: 24px;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.timeline-step {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 16px 18px;
  position: relative;
}

.timeline-step span {
  font-weight: 700;
  color: var(--accent);
}

.split-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split-block .text {
  flex: 1 1 300px;
}

.split-block .image {
  flex: 1 1 260px;
  position: relative;
}

.split-block .image img {
  border-radius: 22px;
}

.split-block .badge {
  position: absolute;
  right: -12px;
  bottom: 16px;
  background: var(--highlight);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #f2e0a3;
  font-weight: 600;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.pricing-card {
  flex: 1 1 240px;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 20px;
  background: #fff;
  position: relative;
}

.pricing-card .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.list {
  padding-left: 18px;
}

.testimonial-line {
  border-left: 2px solid var(--accent);
  padding-left: 16px;
  margin-bottom: 18px;
}

.form-shell {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: -10px 12px 0 rgba(0, 0, 0, 0.06);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-grid .field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field input,
.field select,
.field textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.form-status {
  margin-top: 12px;
  color: var(--accent-dark);
  font-weight: 600;
}

.faq {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.faq-item {
  flex: 1 1 240px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 16px;
  max-width: 340px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
  z-index: 40;
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 32px 0 20px;
}

.page-hero .intro {
  background: var(--surface);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 18px;
}

.policy {
  max-width: 820px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .offset {
    margin-top: 54px;
  }
}
