* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #14171f;
  --muted: #586173;
  --soft: #f2f4f8;
  --accent: #2b5cff;
  --accent-dark: #1d3fba;
  --sand: #f7f2ec;
  --leaf: #0f4c5c;
  --line: #d7dce5;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  padding: 24px 6vw 8px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 0 6vw 60px;
  overflow: hidden;
  background: #dfe6f2;
}

.hero .bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero .overlay {
  position: relative;
  z-index: 1;
  max-width: 640px;
  background: rgba(255, 255, 255, 0.92);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(9, 18, 45, 0.18);
}

.hero h1 {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.2;
}

.hero p {
  margin: 0 0 24px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border-color: var(--accent);
}

.btn.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.section {
  padding: 72px 6vw;
}

.section.tight {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.alt {
  background: var(--soft);
}

.section.sand {
  background: var(--sand);
}

.section.dark {
  background: #111827;
  color: #f8fafc;
}

.section.dark p {
  color: #cbd5f5;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.section p {
  margin: 0 0 16px;
  color: var(--muted);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1 1 320px;
}

.split .visual {
  flex: 1 1 320px;
}

.image-frame {
  background: #e7ecf5;
  padding: 12px;
  border-radius: 20px;
}

.image-frame img {
  border-radius: 16px;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  object-fit: cover;
  background: #dfe6f2;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--ink);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-tag {
  font-size: 26px;
  font-weight: 700;
  color: var(--leaf);
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
}

.form-panel label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.form-panel input,
.form-panel select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  margin-bottom: 16px;
  font-size: 14px;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
}

.service-option input {
  margin: 0;
  width: auto;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(43, 92, 255, 0.3);
  z-index: 10;
}

.footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 50px 6vw;
}

.footer a {
  color: #c7d2fe;
}

.footer .foot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer p {
  color: #cbd5f5;
}

.footer small {
  color: #94a3b8;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
  z-index: 20;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cookie-actions button {
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.section-bg {
  position: relative;
  overflow: hidden;
  background: #e9eef7;
}

.section-bg .bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.section-bg .content {
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: 36px;
  margin-bottom: 20px;
}

.mini-hero {
  padding: 48px 6vw 24px;
  background: var(--soft);
}

.list {
  padding-left: 18px;
}

.notice {
  background: #fff6e5;
  border: 1px solid #fbd38d;
  padding: 16px;
  border-radius: 14px;
}

.menu-open .nav-links {
  display: flex;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero h1 {
    font-size: 32px;
  }
}
