* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #5a5a5a;
  --brand: #1f3a5f;
  --accent: #f2b705;
  --bg: #f7f7f4;
  --soft: #e8ecef;
  --deep: #0d1b2a;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.topbar {
  background: #ffffff;
  border-bottom: 1px solid #e2e2e2;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  padding: 40px 0;
}

.hero-copy {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-media {
  flex: 1 1 360px;
  position: relative;
  background: #d7dde3;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
}

.hero-media img {
  height: 100%;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 2px;
  color: var(--muted);
}

.headline {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #ffffff;
}

.btn-light {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid #d9d9d9;
}

.btn-accent {
  background: var(--accent);
  color: #1b1b1b;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.section {
  padding: 48px 0;
}

.bg-performance {
  background: linear-gradient(rgba(13, 27, 42, 0.72), rgba(13, 27, 42, 0.72)),
    url("https://images.pexels.com/photos/7894388/pexels-photo-7894388.jpeg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 680px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split > div {
  flex: 1 1 280px;
}

.image-frame {
  background: #e1e6ea;
  border-radius: 16px;
  overflow: hidden;
}

.story-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.story-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-strip {
  background: var(--deep);
  color: #ffffff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.trust-strip a {
  color: #ffffff;
  text-decoration: underline;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.benefit {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  border-left: 4px solid var(--accent);
}

.pricing {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.price-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.price-card {
  flex: 1 1 220px;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fdfdfc;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e2e2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card button {
  border: none;
  background: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.service-card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.form-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-fields label {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.form-fields input,
.form-fields select,
.form-fields textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 8px 8px 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.sticky-cta span {
  font-weight: 600;
}

.footer {
  background: #ffffff;
  padding: 32px 24px;
  border-top: 1px solid #e6e6e6;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 560px;
}

.banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.banner-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  padding: 32px 0 12px;
}

.page-hero h1 {
  font-size: 2.2rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight {
  background: var(--soft);
  padding: 16px;
  border-radius: 12px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 800px) {
  .sticky-cta {
    left: 16px;
    right: 16px;
    bottom: 8px;
    justify-content: space-between;
  }
}
