* {
  box-sizing: border-box;
}

:root {
  --ink: #141414;
  --muted: #5a5f6a;
  --accent: #2a6fdb;
  --accent-dark: #1d4f9e;
  --soft: #f4f6f8;
  --sand: #f3efe8;
  --stone: #e7e3dc;
  --night: #111827;
  --highlight: #f7f0ff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 16px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 6px 10px;
  border-radius: 16px;
  transition: background 0.2s ease;
}

.nav a:hover {
  background: var(--soft);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 4px 10px;
  border: 1px solid #d5d9e0;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 32px;
  padding: 24px 6vw 60px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 360px;
  min-width: 280px;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-panel {
  flex: 1 1 380px;
  min-width: 280px;
  position: relative;
}

.image-frame {
  background-color: var(--stone);
  border-radius: 28px;
  overflow: hidden;
}

.image-frame.narrow {
  min-width: 260px;
}

.hero-panel .image-frame {
  height: 100%;
  min-height: 320px;
}

.hero-panel img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 64px 6vw;
  position: relative;
}

.section.alt {
  background: var(--soft);
}

.section.sand {
  background: var(--sand);
}

.section h2 {
  margin-top: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
}

.asymmetric {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.offset-box {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
  position: relative;
  top: -24px;
}

.metric-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  background: var(--highlight);
  padding: 16px;
  border-radius: 16px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.card-body {
  padding: 18px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-panel {
  background: var(--night);
  color: #fff;
  border-radius: 24px;
  padding: 26px;
  flex: 1 1 320px;
  min-width: 280px;
}

.form-panel label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: none;
  margin-bottom: 14px;
  font-size: 1rem;
}

.form-panel button {
  width: 100%;
  border: none;
  cursor: pointer;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 24px;
  background: #fff;
  border: 1px solid #d8deea;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  font-weight: 600;
  z-index: 10;
}

.footer {
  padding: 40px 6vw;
  background: #0f172a;
  color: #e2e8f0;
}

.footer a {
  color: inherit;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.plain-email {
  font-weight: 600;
}

.legal-list,
.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
  display: none;
  align-items: center;
  gap: 16px;
  z-index: 12;
}

.banner p {
  margin: 0;
  color: var(--muted);
  flex: 1 1 auto;
}

.banner button {
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.banner .accept {
  background: var(--accent);
  color: #fff;
}

.banner .reject {
  background: #e2e8f0;
}

.page-hero {
  padding: 40px 6vw 30px;
  background: var(--sand);
}

.page-hero h1 {
  margin: 0;
}

.spacer {
  height: 18px;
}

@media (max-width: 820px) {
  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
