:root {
  color-scheme: light;
  --ink: #1f252d;
  --muted: #4b5563;
  --paper: #f7f3ef;
  --soft: #efe8e1;
  --accent: #3a5a7a;
  --accent-dark: #2d4258;
  --highlight: #bfa87e;
  --line: #d9d2c9;
  --shadow: 0 18px 40px rgba(31, 37, 45, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 24px 7vw 10px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:focus,
.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.ad-label {
  font-size: 0.78rem;
  background: var(--highlight);
  color: #201910;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 70px 7vw 90px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f9fafb;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 31, 40, 0.68);
}

.hero-content {
  position: relative;
  max-width: 560px;
  background: rgba(16, 24, 32, 0.7);
  padding: 36px 34px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero h1 {
  margin-top: 0;
  font-size: 2.6rem;
  line-height: 1.2;
}

.hero p {
  margin-bottom: 24px;
  color: #e2e8f0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.98rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:focus,
.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: rgba(58, 90, 122, 0.12);
}

.hero .btn.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.hero .btn.secondary:hover,
.hero .btn.secondary:focus {
  background: rgba(255, 255, 255, 0.1);
}

.section {
  padding: 70px 7vw;
}

.section.slim {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-heading {
  font-size: 2rem;
  margin: 0 0 16px;
}

.muted {
  color: var(--muted);
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.asym-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.offset-card {
  transform: translateY(-20px);
}

.note {
  background: var(--soft);
  border-left: 4px solid var(--highlight);
  padding: 18px 20px;
}

.img-wrap {
  background: #e0d9d1;
  border-radius: 22px;
  overflow: hidden;
  flex: 1 1 300px;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.step-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.testimonial {
  flex: 1 1 240px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 0;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.service-card .btn {
  align-self: flex-start;
}

.service-card.selected {
  border: 2px solid var(--highlight);
}

.pricing-note {
  margin-top: 20px;
  max-width: 640px;
}

.revenue-block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.revenue-card {
  flex: 1 1 280px;
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.form-panel {
  flex: 1 1 320px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-panel label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: inherit;
}

.form-panel button {
  width: 100%;
}

.form-hint {
  font-size: 0.9rem;
  color: var(--muted);
}

.calm-bg {
  background-image: url("https://images.unsplash.com/photo-1476820865390-c52aeebb9891?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8fafc;
  position: relative;
}

.calm-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 23, 28, 0.7);
}

.calm-bg .section-inner {
  position: relative;
  max-width: 680px;
}

.text-link {
  text-decoration: underline;
}

.site-footer {
  margin-top: auto;
  padding: 40px 7vw 50px;
  background: #1e232a;
  color: #d1d5db;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-columns a {
  color: #d1d5db;
  text-decoration: none;
}

.footer-columns a:hover,
.footer-columns a:focus {
  color: #fff;
}

.disclaimer {
  margin-top: 24px;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions .btn {
  flex: 1 1 140px;
}

#sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 22px;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  z-index: 20;
}

#sticky-cta button {
  border: none;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

#sticky-cta .close-sticky {
  background: transparent;
  color: var(--muted);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.content-page {
  padding: 60px 7vw 80px;
}

.content-page h1 {
  margin-top: 0;
}

.content-page .text-block {
  max-width: 760px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-list .asym-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.05rem;
}

.hidden {
  display: none;
}

@media (max-width: 860px) {
  .hero {
    padding-top: 50px;
  }

  .hero-content {
    padding: 28px 24px;
  }

  .offset-card {
    transform: none;
  }
}
