* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2a37;
  --muted: #5b6472;
  --accent: #2f6fed;
  --accent-soft: #e6eefc;
  --sand: #f5f2ed;
  --sage: #e4efe8;
  --slate: #eef1f6;
  --line: #d9dee7;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 28px 6vw 10px;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 36px 6vw 40px;
  background-color: #eaf0f7;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.55)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(47, 111, 237, 0.25);
  border-radius: 28px;
  pointer-events: none;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 2.4rem;
  margin: 0 0 12px;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-weight: 600;
  transition: transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
}

.hero-aside {
  flex: 1 1 260px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.hero-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 20px 40px rgba(31, 42, 55, 0.12);
  max-width: 300px;
}

.hero-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-alt {
  background: var(--slate);
}

.section-sage {
  background: var(--sage);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 280px;
}

.image-frame {
  background-color: #dfe7f1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(31, 42, 55, 0.1);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .image-frame {
  border-radius: 14px;
  box-shadow: none;
}

.card .image-frame img {
  height: 170px;
}

.card img {
  width: 100%;
  object-fit: cover;
  background-color: #e3e8f4;
}

.card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.cta-inline {
  color: var(--accent);
  font-weight: 600;
}

.offset-band {
  margin-left: 6vw;
  margin-right: 2vw;
  border-radius: 28px;
  background: var(--sand);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  border: 1px solid var(--line);
}

.form-area label {
  font-weight: 600;
}

.form-area input,
.form-area select,
.form-area textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-row .field {
  flex: 1 1 200px;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.highlight {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(47, 111, 237, 0.3);
}

.footer {
  margin-top: auto;
  padding: 36px 6vw;
  background: #0f172a;
  color: #e2e8f0;
}

.footer a {
  color: #e2e8f0;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.footer small {
  display: block;
  margin-top: 16px;
  color: #cbd5f5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 16px;
  display: none;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 16px 30px rgba(31, 42, 55, 0.2);
  z-index: 12;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 240px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.narrow {
  max-width: 780px;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.contact-box {
  background: var(--slate);
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 760px) {
  .hero {
    padding: 30px 6vw;
  }

  .offset-band {
    margin: 0 4vw;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
