* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1f24;
  --muted: #4a5560;
  --light: #f4f6f8;
  --accent: #2c6e8f;
  --accent-dark: #204a5f;
  --soft: #e7edf1;
  --card: #ffffff;
  --outline: #d6dde3;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 32px 0 80px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--outline);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
  color: var(--ink);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > .panel {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.media {
  background: var(--soft);
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero {
  gap: 48px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: var(--accent-dark);
}

.btn.ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.inline-cta {
  font-weight: 600;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 18px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--outline);
  background: var(--card);
}

.card-media {
  width: 140px;
  min-width: 140px;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  background: #dfe6ea;
  display: flex;
  align-items: stretch;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-block {
  padding: 22px;
  border-radius: 18px;
  background: var(--light);
  border: 1px solid var(--outline);
}

.form-block form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-block label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-block input,
.form-block select,
.form-block textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--outline);
  font-size: 1rem;
}

.form-block textarea {
  min-height: 110px;
  resize: vertical;
}

.bg-section {
  background-image: url("https://images.unsplash.com/photo-1756396879433-2c3b5d57c5ae?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1f2a32;
  border-radius: 20px;
  padding: 32px;
  color: #ffffff;
}

.bg-section .panel {
  background: rgba(25, 35, 45, 0.65);
  padding: 18px;
  border-radius: 16px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step span {
  font-weight: 700;
  color: var(--accent-dark);
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.site-footer {
  border-top: 1px solid var(--outline);
  padding: 28px 0 60px;
  background: #ffffff;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 0;
  background: #111820;
  color: #ffffff;
  z-index: 40;
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #3d8aa9;
  color: #ffffff;
}

.cookie-actions .reject {
  background: #ffffff;
  color: #111820;
}

.hidden {
  display: none;
}

.page-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
}

.legal-box {
  padding: 20px;
  border-radius: 16px;
  background: var(--light);
  border: 1px solid var(--outline);
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
