* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2328;
  --muted: #5d6470;
  --accent: #2d5cff;
  --accent-soft: #e8eeff;
  --sand: #f6f2ef;
  --mist: #eef1f5;
  --leaf: #e8f3ee;
  --night: #0f172a;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 7%;
  background: var(--mist);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 700;
  font-size: 20px;
}

.brand span {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  font-size: 13px;
  padding: 6px 10px;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid #dfe3ea;
}

.hero {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 40px 7% 60px;
  gap: 30px;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-media {
  flex: 0.9;
  position: relative;
  background: var(--accent-soft);
  padding: 18px;
  border-radius: 24px;
  align-self: flex-start;
}

.hero-media img {
  border-radius: 18px;
  width: 100%;
  height: 100%;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--ink);
  background: #ffffff;
  color: var(--ink);
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.section {
  padding: 50px 7%;
}

.section.alt {
  background: var(--sand);
}

.section.mist {
  background: var(--mist);
}

.section.leaf {
  background: var(--leaf);
}

.split {
  display: flex;
  gap: 30px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  max-width: 520px;
  margin-top: -30px;
}

.media-box {
  background: #e6e8ef;
  padding: 16px;
  border-radius: 20px;
}

.media-box img {
  border-radius: 16px;
}

.image-frame {
  background: #e4e8f3;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.bg-soft-blue {
  background: #dbe2ff;
}

.bg-lilac {
  background: #efe7f2;
}

.bg-sky {
  background: #e4f0ff;
}

.bg-ice {
  background: #e6eefb;
}

.bg-cream {
  background: #f3ece7;
}

.bg-mint {
  background: #e9f5ef;
}

.bg-violet {
  background: #f0effa;
}

.bg-fog {
  background: #e6ecf0;
}

.bg-cloud {
  background: #e9f2f7;
}

.list-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: var(--night);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.form-shell {
  display: flex;
  gap: 26px;
  align-items: stretch;
}

.form-panel {
  flex: 1;
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.12);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d2d7df;
  font-size: 14px;
}

.form-panel button {
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  background: var(--night);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.form-side {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-side img {
  border-radius: 18px;
  height: 100%;
}

.footer {
  padding: 40px 7%;
  background: var(--night);
  color: #e6e8ef;
  margin-top: auto;
}

.footer a {
  color: #e6e8ef;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-block {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.disclaimer {
  margin-top: 20px;
  font-size: 13px;
  color: #c7ced9;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(45, 92, 255, 0.35);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
  max-width: 360px;
  z-index: 12;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 10px;
  border: none;
  padding: 10px 12px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-reject {
  background: #e7e9ee;
  color: var(--ink);
}

.page-title {
  font-size: 32px;
  margin: 0;
}

.note {
  color: var(--muted);
}

.contact-cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
}

.wide-image {
  border-radius: 20px;
  width: 100%;
  height: 320px;
}

@media (max-width: 960px) {
  .hero,
  .split,
  .form-shell {
    flex-direction: column;
  }

  .hero-media {
    align-self: stretch;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
