* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2430;
  --muted: #5b6472;
  --accent: #2f5b8c;
  --accent-strong: #1f3c63;
  --sand: #f3efe9;
  --cloud: #f6f8fb;
  --night: #12161f;
  --warm: #ead9c8;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  color: var(--accent-strong);
}

.site-header {
  padding: 24px 6vw 12px;
  border-bottom: 1px solid #e6e9ef;
  background: #ffffff;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

.section {
  padding: 64px 6vw;
}

.section-tight {
  padding: 40px 6vw;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1;
  min-width: 260px;
}

.split .media-block {
  flex: 1;
  min-width: 260px;
}

.hero {
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.hero .hero-card {
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(18, 22, 31, 0.08);
  border-radius: 14px;
  position: relative;
  z-index: 2;
}

.hero .hero-media {
  margin-top: -20px;
}

.hero .hero-media .image-frame {
  border-radius: 24px;
  background: #d8dde6;
  overflow: hidden;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.cta-button {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cta-button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.floating-note {
  background: var(--cloud);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 16px 24px rgba(31, 36, 48, 0.08);
}

.stacked-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 14px 26px rgba(18, 22, 31, 0.08);
  flex: 1 1 220px;
  min-width: 220px;
}

.card .image-frame {
  border-radius: 12px;
  margin-bottom: 12px;
  background: #dfe6ee;
  overflow: hidden;
}

.accent-band {
  background: var(--night);
  color: #ffffff;
}

.background-panel {
  border-radius: 22px;
  padding: 28px;
  background-color: #d6dbe4;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
}

.city-backdrop {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.accent-band a {
  color: #ffffff;
}

.asym-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  background: var(--warm);
  padding: 24px;
  border-radius: 18px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e8ecf2;
}

.pricing-item strong {
  font-size: 16px;
}

.process-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.process-step {
  flex: 1 1 200px;
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: #f7f5f2;
}

.form-section {
  background: var(--cloud);
  border-radius: 24px;
  padding: 32px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cdd5df;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  font-size: 14px;
  color: var(--muted);
}

.image-frame {
  background: #d8dde6;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(18, 22, 31, 0.18);
  z-index: 9;
}

.site-footer {
  padding: 40px 6vw;
  background: #0f141d;
  color: #e2e7f0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid a {
  color: #e2e7f0;
}

.legal-note {
  margin-top: 18px;
  font-size: 12px;
  color: #c3cad6;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 18px 30px rgba(18, 22, 31, 0.16);
  max-width: 360px;
  z-index: 10;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e6e9ef;
}

.divider {
  height: 1px;
  background: #e6e9ef;
  margin: 24px 0;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .hero .hero-media {
    margin-top: 12px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
