@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #14161a;
  --muted: #5a6472;
  --accent: #2a6efb;
  --accent-soft: #e9f0ff;
  --surface: #ffffff;
  --surface-alt: #f4f6f9;
  --line: #d8dde6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}

.image-frame {
  background-color: #e5ebf4;
  border-radius: 22px;
  padding: 6px;
}

.frame-sand {
  background-color: #f2efe9;
}

.frame-mist {
  background-color: #dbe7e4;
}

.frame-fog {
  background-color: #e6edf0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  padding: 24px 6vw 10px;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-left: auto;
}

.ad-label {
  flex-basis: 100%;
  font-size: 0.85rem;
  color: var(--muted);
}

.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 6vw;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1;
  min-width: 280px;
}

.hero {
  padding-top: 40px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: var(--accent-soft);
  color: var(--accent);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn:hover {
  filter: brightness(0.98);
}

.info-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--muted);
  font-size: 0.85rem;
}

.card-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(18, 24, 40, 0.06);
}

.service-card .price {
  font-weight: 700;
  color: var(--accent);
}

.layered {
  background: var(--surface-alt);
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 12%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(42, 110, 251, 0.12);
  pointer-events: none;
}

.split-bg {
  background-position: center;
  background-size: cover;
  color: #fff;
}

.split-bg .split-content {
  background: rgba(20, 22, 26, 0.72);
  padding: 28px;
  border-radius: 20px;
}

.bg-sql {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.quote {
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: #fff;
  margin: 10px 0;
}

.form-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: 0 30px 50px rgba(22, 28, 45, 0.08);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form label {
  font-weight: 600;
  font-size: 0.92rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.form-status {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  padding: 40px 6vw 80px;
  background: var(--surface-alt);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-note {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 620px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  z-index: 10;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
  z-index: 20;
  max-width: 560px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-wrap {
  padding: 50px 6vw;
  max-width: 980px;
}

.highlight-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    margin-left: 0;
  }

  .sticky-cta {
    position: static;
    margin: 20px 6vw 0;
  }
}
