@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --funnel-background: #f7f9fb;
  --funnel-surface: #ffffff;
  --funnel-surface-high: #e6e8ea;
  --funnel-surface-low: #f2f4f6;
  --funnel-on-surface: #191c1e;
  --funnel-on-surface-variant: #45464d;
  --funnel-on-primary-container: #7c839b;
  --funnel-primary: #000000;
  --funnel-on-primary: #ffffff;
  --funnel-secondary: #4648d4;
  --funnel-on-secondary: #ffffff;
  --funnel-secondary-dim: #c0c1ff;
  --funnel-outline-variant: #c6c6cd;
  --funnel-outline: #76777d;
  --funnel-error: #ba1a1a;
  --funnel-container-max: 1280px;
  --funnel-margin-mobile: 16px;
  --funnel-margin-desktop: 48px;
  --funnel-radius: 0.125rem;
  --funnel-shadow: 0 12px 32px rgba(25, 28, 30, 0.08);
  --funnel-font: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.funnel-page {
  margin: 0;
  font-family: var(--funnel-font);
  font-size: 16px;
  line-height: 24px;
  color: var(--funnel-on-surface);
  background: var(--funnel-background);
}

.funnel-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--funnel-surface);
  border-bottom: 1px solid var(--funnel-outline-variant);
}

.funnel-nav__inner {
  max-width: var(--funnel-container-max);
  margin: 0 auto;
  padding: 16px var(--funnel-margin-mobile);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.funnel-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--funnel-primary);
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.funnel-nav__brand:hover,
.funnel-nav__brand:focus-visible {
  color: var(--funnel-secondary);
}

.funnel-nav__logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.funnel-nav__name {
  letter-spacing: -0.01em;
}

.page-shell {
  width: 100%;
  max-width: var(--funnel-container-max);
  margin: 0 auto;
  padding: 32px var(--funnel-margin-mobile) 48px;
}

.funnel-page--compact .page-shell {
  padding-top: 20px;
  padding-bottom: 32px;
}

.content-shell {
  background: var(--funnel-surface);
  border: 1px solid var(--funnel-outline-variant);
  border-top: 4px solid var(--funnel-secondary);
  box-shadow: var(--funnel-shadow);
  overflow: hidden;
}

.container-inner {
  padding: 32px;
}

.funnel-page--compact .container-inner {
  padding: 24px;
}

.hero-banner {
  margin: 0 0 20px;
}

.hero-banner img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--funnel-outline-variant);
}

.funnel-page h1,
.funnel-page h2,
.funnel-page h3 {
  margin: 0 0 16px;
  color: var(--funnel-on-surface);
  font-family: var(--funnel-font);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.funnel-page h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  line-height: 1.15;
  font-weight: 800;
}

.funnel-page h2 {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  line-height: 1.2;
}

.funnel-page h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}

.funnel-page p,
.funnel-page li {
  font-size: 18px;
  line-height: 1.55;
  color: var(--funnel-on-surface-variant);
}

.funnel-page ul {
  margin: 0 0 18px 24px;
}

.actions {
  margin-top: 24px;
}

.choice-grid {
  display: grid;
  gap: 12px;
}

.btn-link,
button.btn-link,
.funnel-page button:not(.funnel-nav button) {
  appearance: none;
  border: 0;
  border-radius: var(--funnel-radius);
  padding: 16px 24px;
  width: 100%;
  font-family: var(--funnel-font);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--funnel-on-secondary);
  background: var(--funnel-secondary);
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
  text-align: center;
  display: inline-block;
}

.btn-link:hover,
button.btn-link:hover,
.funnel-page button:not(.funnel-nav button):hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn-link:active,
button.btn-link:active {
  transform: scale(0.98);
}

.btn-link--outline {
  background: transparent;
  color: var(--funnel-primary);
  border: 2px solid var(--funnel-primary);
}

.btn-link--outline:hover {
  background: var(--funnel-primary);
  color: var(--funnel-on-primary);
  filter: none;
}

.disclosure {
  font-size: 12px;
  line-height: 1.5;
  color: var(--funnel-on-surface-variant);
}

.disclosure p {
  margin: 0 0 10px;
}

.funnel-compliance {
  font-size: 12px;
  line-height: 1.5;
  color: var(--funnel-on-surface-variant);
  margin: 0 0 12px;
}

.funnel-compliance--stack {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.note {
  color: var(--funnel-error);
  font-weight: 600;
  margin-top: 14px;
}

.small-link {
  color: var(--funnel-secondary);
  margin-top: 16px;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
}

.small-link:hover,
.small-link:focus-visible {
  text-decoration: underline;
}

.call-cta {
  text-align: center;
  padding: 28px 16px;
}

.call-note {
  margin: 12px 0 0;
  color: var(--funnel-on-surface-variant);
  font-size: 1rem;
  text-align: center;
}

.phone,
.phone a {
  margin: 12px 0 0;
  font-size: clamp(1.75rem, 5vw, 2.125rem);
  color: var(--funnel-primary);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.phone a:hover,
.phone a:focus-visible {
  color: var(--funnel-secondary);
}

.legal-section {
  margin: 0 0 24px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .funnel-nav__inner {
    padding-left: var(--funnel-margin-desktop);
    padding-right: var(--funnel-margin-desktop);
  }

  .page-shell {
    padding-left: var(--funnel-margin-desktop);
    padding-right: var(--funnel-margin-desktop);
  }
}

@media (max-width: 760px) {
  .container-inner {
    padding: 20px 16px;
  }

  .funnel-page--compact .container-inner {
    padding: 16px;
  }
}
