* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f4ef;
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --accent: #2166a3;
  --accent-2: #2f8f6b;
  --sand: #efe9dd;
  --stone: #e1e4ea;
  --dark: #131820;
  --light: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 20px 0 10px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 18px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  position: relative;
  padding: 90px 0 70px;
  color: var(--light);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
}

.hero-inner {
  position: relative;
  display: flex;
  gap: 40px;
  align-items: flex-end;
  justify-content: space-between;
}

.hero-copy {
  max-width: 540px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 56px);
  margin: 0 0 18px;
}

.hero p {
  font-size: 18px;
  margin: 0 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  background: var(--accent);
  color: var(--light);
  font-weight: 600;
  border: 1px solid var(--accent);
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.outline {
  background: transparent;
  border-color: var(--light);
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--dark);
  color: var(--light);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .visual {
  flex: 1 1 320px;
  background: #d8dbe2;
  padding: 16px;
  border-radius: 24px;
}

.split .visual img {
  width: 100%;
  height: 360px;
  border-radius: 20px;
}

.offset-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: stretch;
}

.offset-card {
  flex: 1 1 260px;
  background: var(--light);
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  top: 0;
}

.offset-card.shift {
  top: 20px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--light);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .image {
  background: #c9d4de;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-card .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.process {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.process-step {
  flex: 1 1 220px;
  border-left: 3px solid var(--accent);
  padding: 10px 16px;
}

.choice-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.choice-card {
  flex: 1 1 220px;
  background: var(--light);
  padding: 18px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e0e0e0;
}

.choice-card button {
  border: none;
  padding: 10px 16px;
  border-radius: 18px;
  background: var(--accent);
  color: var(--light);
  font-weight: 600;
  cursor: pointer;
}

.form-shell {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 360px;
  background: var(--light);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.form-panel.disabled {
  opacity: 0.6;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cfd5dc;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  border: none;
  padding: 12px 20px;
  border-radius: 24px;
  background: var(--accent-2);
  color: var(--light);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.testimonial {
  position: relative;
  padding: 70px 0;
  color: var(--light);
}

.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?w=1400&q=80");
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}

.testimonial-inner {
  position: relative;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1 1 260px;
  background: rgba(19, 24, 32, 0.78);
  padding: 20px;
  border-radius: 20px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  background: var(--accent);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 26px;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.footer {
  background: #10141c;
  color: var(--light);
  padding: 50px 0 70px;
}

.footer .columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--light);
  opacity: 0.8;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: var(--light);
  padding: 16px 20px;
  border-radius: 18px;
  display: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
  z-index: 60;
}

.cookie-banner.show {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 18px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: var(--light);
}

.cookie-actions .reject {
  background: #d9d9d9;
}

.page-hero {
  padding: 70px 0 50px;
  background: var(--stone);
}

.page-hero .hero-card {
  background: var(--light);
  padding: 26px;
  border-radius: 24px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}

.image-frame {
  background: #d8dde4;
  padding: 12px;
  border-radius: 22px;
}

.image-frame img {
  width: 320px;
  height: 220px;
  border-radius: 20px;
}

.simple-section {
  padding: 50px 0;
}

.two-column {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 320px;
}

.muted {
  color: var(--muted);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}
