* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1d21;
  --muted: #5c6670;
  --light: #f6f4f0;
  --accent: #5d5bff;
  --accent-dark: #4341cc;
  --sand: #efe9e1;
  --sage: #dfe7e1;
  --copper: #c9a07c;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 7%;
  background: var(--light);
}

.topbar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 24px;
  letter-spacing: 1px;
  font-weight: 700;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 48px 7% 64px;
  background: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80") center/cover no-repeat;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 15, 24, 0.55);
}

.hero-content {
  position: relative;
  max-width: 560px;
  z-index: 1;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero p {
  font-size: 18px;
  color: #f0f0f0;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 24px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border-color: #ffffff;
}

.section {
  padding: 56px 7%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-alt {
  background: var(--sand);
}

.section-dark {
  background: #101321;
  color: #ffffff;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  min-width: 260px;
}

.split-media {
  flex: 1 1 320px;
  min-width: 260px;
  background: #d9d9d9;
  padding: 12px;
  border-radius: 18px;
}

.split-media img {
  border-radius: 14px;
  width: 100%;
  height: 320px;
}

.offset-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(18, 20, 30, 0.1);
  margin-top: -40px;
}

.offset-card.dark {
  background: #1c2033;
  color: #ffffff;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 32px rgba(18, 20, 30, 0.08);
}

.card img {
  height: 170px;
  border-radius: 14px;
  background: #d5d5d5;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.form-shell {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(20, 22, 32, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border: 1px solid #ccd1d8;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  padding: 32px 7% 48px;
  background: var(--light);
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(18, 20, 30, 0.15);
  padding: 18px 20px;
  display: none;
  z-index: 10;
}

.banner-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  top: 40%;
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 12px 26px rgba(18, 20, 30, 0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}

.sticky-cta p {
  font-size: 13px;
  color: var(--muted);
}

.highlight {
  font-weight: 700;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
}

.contact-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(18, 20, 30, 0.08);
  max-width: 520px;
}

.contact-card p {
  margin-bottom: 8px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.page-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.hero-note {
  margin-top: 12px;
  font-size: 14px;
  color: #f7f7f7;
}

.background-block {
  padding: 36px;
  border-radius: 22px;
  background: url("https://images.unsplash.com/photo-1487017159836-4e23ece2e4cf?w=1400&q=80") center/cover no-repeat;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.background-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 25, 0.55);
}

.background-block-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.testimonial {
  background: var(--sage);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.image-frame {
  background: #e2e2e2;
  border-radius: 16px;
  padding: 12px;
}

.image-frame img {
  border-radius: 12px;
  height: 260px;
}

@media (max-width: 880px) {
  .sticky-cta {
    position: static;
    margin: 24px 7% 0;
  }

  .hero {
    padding: 40px 7% 56px;
  }
}
