* {
  box-sizing: border-box;
}

:root {
  --ink: #15181d;
  --muted: #5b6572;
  --sand: #f4f1ed;
  --mist: #eef2f6;
  --night: #0f1b2a;
  --accent: #2f6bff;
  --accent-dark: #234dc1;
  --warm: #d7c3a5;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: var(--night);
  color: #fff;
  padding: 14px 0;
}

.top-bar .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-disclosure {
  font-size: 13px;
  color: #d7dfe9;
  max-width: 420px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  color: #f5f7fb;
}

.hero {
  background: var(--mist);
  padding: 56px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.05;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 12px 0;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.hero-image {
  flex: 0.95;
  display: flex;
  align-items: stretch;
  position: relative;
}

.img-wrap {
  background: var(--warm);
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.hero-image .img-wrap {
  transform: translateY(18px);
}

.offset-section {
  padding: 64px 0;
}

.offset-section .container {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.offset-section .copy {
  flex: 1.15;
}

.offset-section .copy h2 {
  margin-top: 0;
  font-size: 28px;
}

.offset-section .copy p {
  color: var(--muted);
}

.offset-section .card-stack {
  flex: 0.85;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stack-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(20, 25, 38, 0.08);
}

.stack-card h3 {
  margin: 0 0 6px;
}

.stack-card p {
  margin: 0;
  color: var(--muted);
}

.split-band {
  background: var(--night);
  color: #fff;
  padding: 72px 0;
}

.split-band .container {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split-band .copy {
  flex: 1;
}

.split-band h2 {
  margin-top: 0;
  font-size: 30px;
}

.split-band p {
  color: #ced6e2;
}

.services {
  padding: 70px 0 50px;
}

.services .intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.service-card {
  background: var(--sand);
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .img-wrap {
  height: 170px;
}

.service-card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: var(--night);
}

.form-section {
  background: var(--mist);
  padding: 70px 0;
}

.form-shell {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.form-shell .copy {
  flex: 1;
}

.form-shell form {
  flex: 0.9;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 16px 36px rgba(15, 27, 42, 0.1);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #ccd4de;
  font-size: 15px;
}

.tiny-note {
  font-size: 13px;
  color: var(--muted);
}

.insights {
  padding: 64px 0;
}

.insights .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.insight-row {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.insight-row.reverse {
  flex-direction: row-reverse;
}

.insight-row .copy {
  flex: 1;
}

.insight-row .img-wrap {
  flex: 0.9;
  min-height: 240px;
}

.cta-band {
  background: #ffffff;
  padding: 54px 0;
  border-top: 1px solid #e6ebf2;
  border-bottom: 1px solid #e6ebf2;
}

.cta-band .container {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
}

.footer {
  background: var(--night);
  color: #d9e1ec;
  padding: 42px 0 80px;
  margin-top: auto;
}

.footer a {
  color: #d9e1ec;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer .disclaimer {
  font-size: 13px;
  color: #b8c1cd;
  max-width: 760px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 12px 26px rgba(20, 25, 38, 0.2);
  font-weight: 600;
  z-index: 20;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #101722;
  color: #f1f4f8;
  padding: 14px 18px;
  display: none;
  z-index: 30;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  padding: 8px 14px;
  font-size: 14px;
}

.simple-hero {
  padding: 60px 0;
  background: var(--mist);
}

.simple-hero h1 {
  margin: 0 0 10px;
}

.page-content {
  padding: 46px 0 70px;
}

.page-content .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 220px;
  background: var(--sand);
  border-radius: 16px;
  padding: 18px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thanks-box {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 36px rgba(20, 25, 38, 0.08);
}

.spaced-media {
  margin-top: 24px;
}

@media (max-width: 900px) {
  .hero .container,
  .offset-section .container,
  .split-band .container,
  .form-shell,
  .insight-row {
    flex-direction: column;
  }

  .hero-image .img-wrap {
    transform: none;
  }
}
