* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #0f1a2b;
  --muted: #5e6b80;
  --accent: #1f4b99;
  --accent-strong: #14336d;
  --sun: #f2c94c;
  --line: #e4e9f0;
  --wash: #f7f8fb;
  --soft: #eef2f7;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.page {
  overflow: hidden;
}

.site-header {
  padding: 24px 6vw 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: #ffffff;
  background: var(--accent);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-weight: 500;
}

.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 56px 6vw 40px;
}

.hero-copy {
  flex: 1 1 50%;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 2.6vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-media {
  flex: 1 1 45%;
  position: relative;
}

.hero-image {
  height: 380px;
}

.section-image {
  height: 320px;
}

.section-image-tall {
  height: 300px;
}

.section-image-short {
  height: 260px;
  margin-top: 18px;
}

.mt-md {
  margin-top: 18px;
}

.img-frame {
  background: #dde5f2;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.floating-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(15, 26, 43, 0.15);
  padding: 16px 18px;
  width: 220px;
}

.floating-card strong {
  display: block;
  margin-bottom: 6px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover,
.btn:focus {
  background: var(--accent-strong);
  color: #ffffff;
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: var(--accent);
}

.section {
  padding: 64px 6vw;
  position: relative;
}

.section.alt {
  background: var(--wash);
}

.asym-row {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-row .text-block {
  flex: 1 1 320px;
}

.asym-row .media-block {
  flex: 1 1 320px;
  position: relative;
}

.offset-panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(15, 26, 43, 0.12);
  position: relative;
  top: 18px;
}

.pill-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pill {
  background: var(--soft);
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 500;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-card {
  display: flex;
  gap: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(15, 26, 43, 0.08);
  flex-wrap: wrap;
}

.service-card .img-frame {
  width: 220px;
  height: 160px;
  flex-shrink: 0;
  background: #dbe6f8;
}

.service-card h3 {
  margin-top: 0;
}

.price {
  font-weight: 700;
  color: var(--accent-strong);
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid var(--sun);
  padding: 18px 22px;
  border-radius: 12px;
  margin-top: 20px;
}

.form-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(15, 26, 43, 0.12);
  max-width: 520px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  padding: 40px 6vw 60px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.legal-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(15, 26, 43, 0.15);
  padding: 8px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 26, 43, 0.2);
  padding: 16px 18px;
  display: none;
  gap: 16px;
  align-items: center;
  max-width: 760px;
  width: calc(100% - 32px);
  z-index: 12;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  padding: 48px 6vw 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.page-hero .img-frame {
  width: min(420px, 90vw);
  height: 260px;
}

.content-block {
  padding: 24px 6vw 48px;
  max-width: 900px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight-box {
  background: var(--soft);
  padding: 18px 20px;
  border-radius: 16px;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .floating-card {
    position: static;
    width: auto;
    margin-top: 16px;
  }

  .service-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    position: static;
    margin: 20px auto 0;
    width: fit-content;
  }
}
