* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #101820;
  --muted: #5c6670;
  --accent: #0e6b8f;
  --accent-soft: #d5ecf5;
  --warm: #f5efe7;
  --cool: #eef2f8;
  --alert: #b33a3a;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fcfcfd;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 10px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.section.alt {
  background: var(--cool);
}

.section.warm {
  background: var(--warm);
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  position: relative;
}

.hero-copy {
  flex: 1.05;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(16, 24, 32, 0.1);
  margin-top: 30px;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.hero-media {
  flex: 0.95;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-12px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.button.ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.button.dark {
  background: var(--ink);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.split {
  display: flex;
  gap: 34px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(12, 22, 33, 0.08);
  transform: translateY(-12px);
}

.grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #e4e9ef;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card strong {
  font-size: 1.1rem;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.stat {
  flex: 1 1 160px;
  padding: 18px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e9edf3;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #e5eaf1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.process {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-wrap {
  background: #ffffff;
  border-radius: 26px;
  padding: 28px;
  border: 1px solid #e2e7ee;
  box-shadow: 0 22px 60px rgba(16, 24, 32, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccd5df;
  font-size: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer {
  padding: 40px 6vw 60px;
  background: #0f151b;
  color: #f4f6f8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
  color: #c7ced6;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 20px 50px rgba(16, 24, 32, 0.2);
  z-index: 9;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(16, 24, 32, 0.18);
  width: min(360px, 92vw);
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  font-size: 0.85rem;
  color: var(--muted);
}

.page-hero {
  padding: 40px 6vw 20px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.page-content {
  padding: 30px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #e6ebf2;
}

.highlight {
  background: var(--accent-soft);
  padding: 14px 18px;
  border-radius: 14px;
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 960px) {
  .hero,
  .split {
    flex-direction: column;
  }

  .hero-copy {
    margin-top: 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
