* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1c1f;
  --muted: #5a5f68;
  --accent: #1f6feb;
  --accent-dark: #1452b8;
  --paper: #f6f4f1;
  --sand: #efe9e2;
  --mist: #e9eef6;
  --stone: #d6d1ca;
  --shadow: rgba(27, 28, 31, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 20px 6vw;
  border-bottom: 1px solid var(--sand);
  background: #fff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:focus,
.nav-links a:hover {
  border-color: var(--accent);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 260px;
}

.hero {
  padding: 70px 6vw;
  background: var(--mist);
}

.bg-hero {
  background-color: #dbe3ee;
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
  min-height: 360px;
  border-radius: 24px;
}

.bg-process {
  background-color: #e7e1db;
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  min-height: 320px;
}

.split-section {
  display: flex;
  gap: 40px;
  padding: 70px 6vw;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-visual {
  flex: 1;
  min-width: 280px;
}

.split-content h1,
.split-content h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.split-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.split-content p {
  color: var(--muted);
  margin-bottom: 18px;
}

.tagline {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:focus,
.btn:hover {
  background: var(--accent-dark);
  color: #fff;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.inline-link:focus,
.inline-link:hover {
  text-decoration: underline;
}

.image-card {
  background: var(--sand);
  padding: 16px;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow);
}

.image-card.card-blue {
  background: #e6edf7;
}

.image-card.card-sand {
  background: #f1ece6;
}

.cta-row {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.image-card img {
  border-radius: 16px;
  width: 100%;
  height: 320px;
}

.stat-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.stat {
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  min-width: 160px;
  box-shadow: 0 10px 30px var(--shadow);
}

.stat strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.layered {
  background: var(--paper);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 16px 34px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-item span {
  font-weight: 600;
  color: var(--accent-dark);
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
}

.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 30px var(--shadow);
  z-index: 10;
}

.sticky-cta:focus,
.sticky-cta:hover {
  background: var(--accent-dark);
}

footer {
  padding: 50px 6vw;
  background: var(--ink);
  color: #fff;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col a {
  display: inline-block;
  color: #fff;
  margin-bottom: 8px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d5d5d5;
  margin-top: 20px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 18px 40px var(--shadow);
  display: none;
  max-width: 340px;
  z-index: 20;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.plain-section {
  padding: 60px 6vw;
}

.plain-section h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.plain-section h2 {
  font-size: 1.4rem;
  margin: 22px 0 10px;
}

.plain-section p {
  color: var(--muted);
  margin-bottom: 12px;
}

.contact-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 240px;
  padding: 22px;
  border-radius: 16px;
  background: var(--sand);
}

.service-visual {
  background: var(--mist);
  border-radius: 20px;
  padding: 18px;
}

.service-visual img {
  border-radius: 16px;
  width: 100%;
  height: 260px;
}

@media (max-width: 960px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
