* {
  box-sizing: border-box;
}

:root {
  --ink: #1e1f24;
  --muted: #5f6472;
  --accent: #1b5cff;
  --accent-dark: #0f3ea8;
  --surface: #f5f6f9;
  --surface-strong: #eef0f6;
  --edge: #d7dbe6;
  --soft: #ffffff;
  --warm: #fff6e6;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 7vw;
  border-bottom: 1px solid var(--edge);
  background: var(--soft);
}

.brand-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h1 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
}

.brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.ad-disclosure {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--warm);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.site-nav a {
  font-weight: 600;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 7vw 64px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-split {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: stretch;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel p {
  margin: 0;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--edge);
}

.hero-media {
  border-radius: 20px;
  overflow: hidden;
  background: #dfe3ee;
  min-height: 260px;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-primary,
.button-outline,
.button-soft {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
}

.button-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.button-soft {
  background: var(--surface-strong);
  color: var(--ink);
}

.story-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  border-radius: 24px;
  background: #f9fafc;
}

.image-card {
  border-radius: 18px;
  overflow: hidden;
  background: #e4e7f0;
}

.image-card img {
  width: 100%;
  height: 240px;
}

.trust-badges {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
}

.badge {
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--edge);
  font-size: 0.9rem;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: var(--soft);
  border: 1px solid var(--edge);
}

.service-media {
  width: 140px;
  min-width: 140px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  background: #e0e4ef;
  display: flex;
}

.service-media img {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  margin: 0 0 6px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  padding: 24px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--edge);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--edge);
  font: inherit;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial {
  padding: 16px;
  border-radius: 14px;
  background: var(--surface-strong);
}

.disclaimer {
  font-size: 0.92rem;
  color: var(--muted);
}

.site-footer {
  padding: 32px 7vw 40px;
  background: #111319;
  color: #f3f4f8;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #b3b8c9;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  color: #b3b8c9;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 18px;
  border: none;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  max-width: 360px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--edge);
  box-shadow: 0 10px 30px rgba(15, 22, 45, 0.12);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--edge);
  background: var(--surface);
}

@media (max-width: 900px) {
  .section-split,
  .section-split.reverse,
  .service-card {
    flex-direction: column;
  }

  .sticky-cta {
    left: 18px;
    right: auto;
  }
}
