* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1f23;
  --muted: #5d6670;
  --accent: #2f5cff;
  --accent-dark: #223a9c;
  --pearl: #f5f3ee;
  --sand: #efe7db;
  --sky: #e6efff;
  --stone: #e9ecef;
  --line: #d8dce2;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px 6vw 10px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  font-size: 0.95rem;
  padding: 6px 0;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.hero {
  background-color: #1d2534;
  color: #fff;
  padding: 80px 6vw 110px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-inner {
  display: flex;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  max-width: 520px;
}

.hero-copy h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-copy p {
  font-size: 1.1rem;
  margin-bottom: 22px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 24px;
  border-radius: 20px;
  max-width: 340px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  margin-left: auto;
}

.hero-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.hero-card ul {
  padding-left: 18px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-size: 0.98rem;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.btn.light {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid #fff;
}

.section {
  padding: 70px 6vw;
}

.section.light {
  background: var(--pearl);
}

.section.tone {
  background: var(--sky);
}

.section.dark {
  background: #1c2331;
  color: #fff;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.image-frame {
  background-color: var(--sand);
  border-radius: 24px;
  overflow: hidden;
  flex: 1;
  min-height: 320px;
}

.text-block {
  flex: 1;
  max-width: 520px;
}

.text-block h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.text-block p {
  margin-bottom: 12px;
  color: var(--muted);
}

.offset-panel {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transform: translateY(-20px);
}

.metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  flex: 1;
  min-width: 160px;
  background: var(--stone);
  padding: 18px;
  border-radius: 16px;
}

.metric h4 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
}

.service-card {
  flex: 1;
  min-width: 240px;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

.insight-bg {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: var(--stone);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stack .panel {
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
}

.process {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.process-list {
  flex: 1;
  min-width: 260px;
}

.process-list ol {
  padding-left: 20px;
  color: var(--muted);
}

.process-visual {
  flex: 1;
  min-width: 260px;
}

.quote-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.quote-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  flex: 1;
  min-width: 220px;
}

.form-wrap {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1;
  min-width: 280px;
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  width: 100%;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.footer {
  background: #11161f;
  color: #d9dbe1;
  padding: 50px 6vw 30px;
  margin-top: auto;
}

.footer-cols {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  margin-bottom: 12px;
}

.footer small {
  color: #9ba3b0;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 16px;
  align-items: center;
  z-index: 20;
}

.cookie-banner p {
  max-width: 420px;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
  border: none;
}

.page-hero {
  padding: 70px 6vw 40px;
  background: var(--sand);
}

.page-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
}

.content-blocks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.content-card {
  flex: 1;
  min-width: 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 15px 36px rgba(0, 0, 0, 0.07);
}

.plain-section {
  padding: 50px 6vw;
}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    margin-left: 0;
  }

  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
