* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1f;
  --muted: #565a62;
  --accent: #2b5c6f;
  --accent-strong: #1e3f4d;
  --soft: #f4f1ec;
  --soft-2: #eef2f4;
  --soft-3: #f8f6f3;
  --line: #d7d9de;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  padding: 24px 0 18px;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.nav a {
  color: var(--ink);
}

.ad-label {
  color: var(--accent-strong);
  font-weight: 600;
}

.hero {
  padding: 56px 0 36px;
}

.hero-wrap {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 18px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 32px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.button-outline {
  background: transparent;
  color: var(--accent);
}

.hero-image {
  flex: 0.9;
  position: relative;
}

.image-frame {
  background: var(--soft-2);
  padding: 10px;
}

.hero-image .image-frame {
  transform: translateY(14px);
}

.hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.section {
  padding: 56px 0;
}

.section-muted {
  background: var(--soft);
}

.section h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.section p {
  color: var(--muted);
}

.offset-layout {
  display: flex;
  gap: 32px;
  align-items: center;
}

.offset-layout.reverse {
  flex-direction: row-reverse;
}

.offset-content {
  flex: 1;
}

.offset-image {
  flex: 1;
}

.offset-image .image-frame {
  transform: translateX(-14px);
}

.offset-layout.reverse .offset-image .image-frame {
  transform: translateX(14px);
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.pillar {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar strong {
  font-size: 16px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 250px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.service-card.offset-up {
  transform: translateY(-12px);
}

.service-card.offset-down {
  transform: translateY(10px);
}

.service-card img {
  border-radius: 12px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-strong);
}

.callout {
  background: var(--soft-3);
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  margin-top: 20px;
}

.metrics {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.metric {
  flex: 1 1 200px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: #ffffff;
}

.metric span {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-strong);
}

.form-section {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.form-box {
  flex: 1 1 320px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: #ffffff;
}

.form-box label {
  display: block;
  font-size: 14px;
  margin: 10px 0 6px;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 15px;
}

.form-box textarea {
  min-height: 110px;
  resize: vertical;
}

.form-box button {
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  border-radius: 28px;
  border: none;
  background: var(--accent-strong);
  color: #ffffff;
  font-weight: 600;
}

.sticky-cta {
  flex: 1 1 220px;
  position: sticky;
  top: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: var(--soft-2);
}

.inline-link {
  font-weight: 600;
}

.footer {
  margin-top: auto;
  background: #11151a;
  color: #f1f1f1;
  padding: 36px 0;
}

.footer a {
  color: #f1f1f1;
}

.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-grid p {
  color: #c9ced6;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  font-size: 14px;
}

.disclaimer {
  margin-top: 16px;
  font-size: 13px;
  color: #c2c7d1;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 20;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.cookie-actions .reject {
  background: #ffffff;
  color: var(--accent);
}

.page-hero {
  padding: 40px 0 18px;
}

.page-hero h1 {
  font-size: 34px;
}

.page-hero p {
  color: var(--muted);
  max-width: 720px;
}

.simple-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
}

.simple-content ul {
  padding-left: 18px;
}

.simple-content li {
  margin-bottom: 8px;
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #ffffff;
}

.thanks-box {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: var(--soft);
  max-width: 720px;
}

@media (max-width: 900px) {
  .hero-wrap,
  .offset-layout {
    flex-direction: column;
  }

  .hero-image .image-frame,
  .offset-image .image-frame {
    transform: none;
  }

  .sticky-cta {
    position: static;
  }
}
