* {
  box-sizing: border-box;
}

:root {
  --ink: #1d1f25;
  --muted: #5b6270;
  --accent: #2f6bff;
  --accent-soft: #e7eeff;
  --sun: #ffb347;
  --surface: #f4f5f8;
  --deep: #0c1320;
  --line: #d9dde5;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 24px 0;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--surface);
}

.section.dark {
  background: var(--deep);
  color: #f7f8fb;
}

.split {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero {
  background: linear-gradient(120deg, #fef6ec 10%, #f1f4ff 70%);
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.1rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.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: 0;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
}

.card-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 18px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 210px;
}

.card.dark {
  background: #151b28;
  border-color: #2d3447;
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.card img {
  width: 36px;
  height: 36px;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.form-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--sun);
  color: #35220b;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.footer {
  padding: 36px 0;
  background: #0b0f1a;
  color: #c6c9d3;
}

.footer a {
  color: inherit;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #141925;
  color: #f6f7fb;
  padding: 16px 0;
  z-index: 40;
}

.cookie-content {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.thin {
  font-weight: 400;
}

.image-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.background-panel {
  background-image: url("assets/img/abstract.svg");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 28px;
  color: #12161f;
}

.contact-block {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 740px) {
  .nav-links {
    justify-content: flex-start;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
    padding: 10px 14px;
  }
}
