* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #0f172a;
  background-color: #f7f8fb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 20px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 22px;
  font-weight: 700;
}

.brand-tagline {
  font-size: 14px;
  color: #475569;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-wrap a {
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #f1f5f9;
}

.nav-wrap a:focus,
.nav-wrap a:hover {
  background-color: #dbeafe;
}

.ad-label {
  font-size: 12px;
  font-weight: 600;
  color: #7c3aed;
  border: 1px solid #ddd6fe;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #f5f3ff;
}

.hero {
  padding: 48px 6vw 64px;
  background: linear-gradient(120deg, #eef2ff 0%, #f8fafc 60%, #ffffff 100%);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero h1 {
  font-size: 38px;
  margin: 0 0 16px;
  line-height: 1.2;
}

.hero p {
  margin: 0 0 18px;
  font-size: 17px;
  color: #334155;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #0f172a;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.alt {
  background-color: #2563eb;
}

.button.light {
  background-color: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5f5;
}

.button:focus,
.button:hover {
  transform: translateY(-1px);
}

.image-box {
  border-radius: 24px;
  overflow: hidden;
  background-color: #e2e8f0;
}

.section {
  padding: 56px 6vw;
}

.section.compact {
  padding: 32px 6vw;
}

.section-title {
  font-size: 28px;
  margin: 0 0 16px;
}

.section p {
  color: #334155;
}

.service-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card h3 {
  margin: 0;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #2563eb;
}

.panel {
  background-color: #0f172a;
  color: #ffffff;
  border-radius: 26px;
  padding: 28px;
}

.panel a {
  text-decoration: underline;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-step {
  padding: 14px 16px;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cbd5f5;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.form-field {
  flex: 1 1 220px;
}

.form-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.testimonials {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e2e8f0;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  align-self: flex-start;
  background-color: #fef3c7;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #fcd34d;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: auto;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw;
  background-color: #0b1120;
  color: #e2e8f0;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer small {
  color: #94a3b8;
}

.legal-block {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e2e8f0;
}

.page-hero {
  padding: 40px 6vw;
  background-color: #e0e7ff;
}

.details-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.details-list li {
  padding: 10px 12px;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
  border: 1px solid #e2e8f0;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
  color: #2563eb;
}

.background-band {
  background-color: #0f172a;
  color: #e2e8f0;
  padding: 36px 6vw;
}

.background-band .split {
  align-items: flex-start;
}

.light-band {
  background-color: #f1f5f9;
}

.notice {
  font-size: 14px;
  color: #475569;
}

@media (max-width: 860px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    position: static;
    margin: 20px 0 0;
  }
}
