* {
  box-sizing: border-box;
}

:root {
  --ink: #1f252b;
  --muted: #5b6672;
  --accent: #2f6bff;
  --accent-2: #ff7b4a;
  --soft: #f3f5f7;
  --sand: #f7f1ea;
  --graphite: #12161a;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand);
  color: #5f534c;
  font-size: 0.85rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

nav a {
  padding: 8px 10px;
  border-radius: 6px;
  background: var(--soft);
}

.hero {
  padding: 40px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-copy {
  max-width: 640px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.btn.alt {
  background: var(--graphite);
}

.btn.soft {
  background: var(--soft);
  color: var(--ink);
}

.hero-media {
  flex: 1;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #dfe6ee;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.narrow {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.two-col > div {
  flex: 1 1 280px;
}

.inline-card {
  padding: 20px;
  border-radius: 18px;
  background: var(--soft);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-index {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.trust-band {
  background: var(--sand);
}

.testimonial {
  padding: 18px;
  border-left: 3px solid var(--accent-2);
  background: #fff7f2;
}

.services-reveal {
  background: #f0f6ff;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.service-card {
  flex: 1 1 220px;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(31, 37, 43, 0.08);
  display: flex;
  flex-direction: column;
}

.service-media {
  height: 180px;
  background: #e4e9f0;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.selection-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.selection-row button {
  border-radius: 14px;
  border: 1px solid #d2d7df;
  background: white;
  padding: 10px 16px;
  cursor: pointer;
}

.form-wrap {
  padding: 24px;
  border-radius: 20px;
  background: var(--graphite);
  color: white;
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
}

.form-note {
  color: #c7d3e0;
  font-size: 0.9rem;
}

.bg-ambient {
  background: #f6f7f9;
}

.bg-image {
  color: white;
  position: relative;
  overflow: hidden;
}

.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1503602642458-232111445657?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-flow {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-image .section-content {
  position: relative;
  z-index: 1;
}

.image-slab {
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background: #d7dbe0;
}

.footer {
  padding: 48px 6vw;
  background: #0d0f12;
  color: #c7ced7;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: #c7ced7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-2);
  color: white;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  padding: 16px;
  max-width: 360px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: white;
}

.cookie-reject {
  background: var(--soft);
}

.page-hero {
  padding: 48px 6vw 32px;
  background: var(--soft);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.content {
  padding: 32px 6vw 64px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 980px;
}

.contact-card {
  background: var(--sand);
  padding: 20px;
  border-radius: 16px;
}

.muted {
  color: var(--muted);
}

@media (min-width: 960px) {
  .hero-split {
    flex-direction: row;
    align-items: center;
  }
}
