:root {
  --ink: #1d1f22;
  --muted: #5b6068;
  --paper: #f7f4f0;
  --accent: #c76a3a;
  --accent-dark: #9b4b26;
  --ocean: #1f5a6a;
  --sand: #efe7dc;
  --fog: #e6ebef;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  background: var(--accent);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 80px 6vw 120px;
  color: #fff;
  background-color: #2a3036;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 28, 0.6);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-end;
  z-index: 1;
}

.hero-text {
  flex: 1;
  max-width: 520px;
}

.hero-text h1 {
  font-size: 3rem;
  margin: 0 0 16px;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.12);
  padding: 24px;
  border-radius: 16px;
  max-width: 320px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button-outline {
  background: transparent;
  border-color: #fff;
}

.section {
  padding: 72px 6vw;
}

.section-dark {
  background: var(--fog);
}

.section-sand {
  background: var(--sand);
}

.bg-insight {
  background-color: #22363f;
  background-image: url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.asym-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.media-box {
  flex: 1;
  min-width: 260px;
  max-width: 420px;
  background: #d6d0c6;
  border-radius: 18px;
  overflow: hidden;
}

.tone-1 {
  background: #cfd3d6;
}

.tone-2 {
  background: #e2e5e8;
}

.tone-3 {
  background: #e9dfd6;
}

.tone-4 {
  background: #d9d2c9;
}

.tone-5 {
  background: #d7dadd;
}

.text-box {
  flex: 1;
  min-width: 260px;
}

.text-box h2 {
  margin-top: 0;
  font-size: 2.2rem;
}

.offset-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.card.media {
  padding: 0;
  overflow: hidden;
}

.card-content {
  padding: 24px;
}

.inline-testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 24px 0 0;
  font-style: italic;
  color: var(--muted);
}

.pricing-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.price-tag {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.process-steps {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
}

.form-wrap {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1;
  min-width: 280px;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c8cdd2;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #101416;
  color: #f5f5f5;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer a {
  color: #f5f5f5;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--ocean);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.hidden {
  display: none;
}

.page-title {
  font-size: 2.6rem;
  margin: 0 0 12px;
}

.subtle {
  color: var(--muted);
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  max-width: 520px;
}

.legal-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
