* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0a121f;
  --muted: #5a6575;
  --accent: #3f6df6;
  --accent-dark: #2745a8;
  --wash: #f2f5ff;
  --sand: #f8f4ef;
  --sunset: #fde9d5;
  --forest: #0f2e2b;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.site-header {
  padding: 28px 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}

.nav-links a {
  color: var(--ink);
  font-weight: 500;
}

.hero {
  position: relative;
  margin-top: 24px;
  padding: 48px;
  background: var(--wash);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  gap: 30px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 30px;
  width: 220px;
  height: 220px;
  background: var(--sunset);
  border-radius: 50%;
  opacity: 0.8;
}

.hero-text {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
}

.hero-text p {
  color: var(--muted);
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}

.hero-visual {
  position: relative;
  flex: 0.9;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-visual img {
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(10, 18, 31, 0.16);
}

.floating-note {
  position: absolute;
  top: 20px;
  left: -40px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(10, 18, 31, 0.12);
  font-size: 14px;
}

.section {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-size: 28px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
  min-width: 260px;
}

.highlight {
  background: var(--sand);
  padding: 32px;
  border-radius: 20px;
}

.highlight.dark {
  background: var(--forest);
  color: #e6f2ef;
}

.tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 240px;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 14px 30px rgba(10, 18, 31, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.metrics {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.metric {
  background: var(--sunset);
  padding: 18px 22px;
  border-radius: 18px;
  min-width: 180px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-step {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.price-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1;
  min-width: 250px;
  border: 1px solid #e6e9ef;
  border-radius: 20px;
  padding: 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card .price {
  font-size: 22px;
  font-weight: 700;
}

.form-shell {
  background: var(--wash);
  border-radius: 26px;
  padding: 32px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccd4e0;
  font-size: 14px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--ink);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(10, 18, 31, 0.25);
  font-size: 14px;
  z-index: 999;
}

.site-footer {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid #e6e9ef;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px rgba(10, 18, 31, 0.2);
  display: none;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 998;
}

.cookie-banner p {
  flex: 1;
  min-width: 220px;
  color: var(--muted);
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.pill {
  background: #f5f7fb;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--muted);
}

.offset-photo {
  position: relative;
  padding-bottom: 40px;
}

.offset-photo img {
  border-radius: 24px;
}

.offset-photo .overlay {
  position: absolute;
  bottom: 0;
  left: 20px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 14px 26px rgba(10, 18, 31, 0.15);
  font-size: 13px;
}

.accent-block {
  background: var(--sunset);
  padding: 24px;
  border-radius: 20px;
  transform: translateY(-12px);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
}

.legal {
  max-width: 760px;
  margin-top: 40px;
  color: var(--muted);
}

@media (max-width: 800px) {
  .hero {
    flex-direction: column;
  }

  .floating-note {
    left: 0;
    top: -10px;
  }
}
