/* 1) Foundations */
/* =========================
   VARIABLES
   ========================= */
:root {
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 1px rgba(15, 23, 32, 0.06),
    0 10px 30px rgba(15, 23, 32, 0.08);
  --shadow-md: 0 2px 2px rgba(15, 23, 32, 0.07),
    0 18px 50px rgba(15, 23, 32, 0.1);
  --stroke: rgba(15, 23, 32, 0.1);
  --stroke-soft: rgba(15, 23, 32, 0.07);
  --bg: #0b1220;
  --surface: #0f1a2b;
  --surface-2: #111f35;
  --text: #0f1720;
  --text-muted: rgba(15, 23, 32, 0.72);
  --text-soft: rgba(15, 23, 32, 0.6);
  --text-pink: pink;
  --white: #ffffff;
  /* Brand (adjust to your site palette) */
  --brand: #1b66ff;
  --brand-2: #12b981;
  /* optional accent */
  --danger: #dc2626;
  --focus: rgba(27, 102, 255, 0.24);
  --container-pad: 24px;
  --section-pad: 72px;
  --section-pad-sm: 44px;
  --max-w: 1140px; }

/* Typography */
/* Breakpoints */
/* =========================
   MIXINS
   ========================= */
/* =========================
   BASE
   ========================= */
html {
  scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: #f6f8fb;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  max-width: 100%;
  height: auto;
  display: block; }

a {
  color: inherit;
  text-decoration: none; }

a:hover {
  text-decoration: none; }

.container {
  padding-left: var(--container-pad);
  padding-right: var(--container-pad); }

.section {
  padding: var(--section-pad-sm) 0;
  position: relative; }
  @media (min-width: 992px) {
    .section {
      padding: var(--section-pad) 0; } }

.section--tight {
  padding: 32px 0; }
  @media (min-width: 992px) {
    .section--tight {
      padding: 44px 0; } }

.section-title {
  margin-bottom: 18px; }
  .section-title h1,
  .section-title h2 {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin: 0; }
  .section-title h1 {
    font-size: clamp(30px, 3.2vw, 46px); }
  .section-title h2 {
    font-size: clamp(26px, 2.6vw, 36px); }
  .section-title p {
    margin: 10px 0 0;
    color: var(--text-muted);
    max-width: 62ch; }

.section-content {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65; }
  .section-content p:last-child {
    margin-bottom: 0; }

/* Nice selection */
::selection {
  background: rgba(27, 102, 255, 0.18); }

/* 2) Layout shell */
/* =========================
   HEADER
   ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(15, 23, 32, 0.08);
  transition: box-shadow 0.2s ease, background 0.2s ease; }

/* Optional elevated state on scroll (JS toggled) */
.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(15, 23, 32, 0.08); }

.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between; }

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px; }

.site-header__logo {
  display: block;
  max-height: 40px;
  width: auto; }

@media (min-width: 992px) {
  .site-header__logo {
    max-height: 46px; } }
/* =========================
   ONE-PAGE LEAD GEN NAV
   ========================= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
  .site-nav .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0; }
  .site-nav.is-scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 26px rgba(15, 23, 32, 0.08);
    border-color: rgba(15, 23, 32, 0.06); }

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit; }
  .brand .brand-name {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
    line-height: 1.05; }
  .brand .brand-sub {
    font-size: 12px;
    opacity: 0.72;
    margin-top: 2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none; }
  .nav-links .nav-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    opacity: 0.9;
    padding: 8px 10px;
    border-radius: 999px;
    transition: background 0.15s ease, opacity 0.15s ease; }
    .nav-links .nav-link:hover {
      opacity: 1;
      background: rgba(15, 23, 32, 0.06); }

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px; }

.nav-toggle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 32, 0.12);
  background: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0; }
  .nav-toggle .nav-toggle-lines {
    width: 18px;
    height: 2px;
    background: rgba(15, 23, 32, 0.85);
    position: relative;
    display: block; }
    .nav-toggle .nav-toggle-lines::before, .nav-toggle .nav-toggle-lines::after {
      content: "";
      position: absolute;
      left: 0;
      width: 18px;
      height: 2px;
      background: rgba(15, 23, 32, 0.85); }
    .nav-toggle .nav-toggle-lines::before {
      top: -6px; }
    .nav-toggle .nav-toggle-lines::after {
      top: 6px; }

/* Mobile panel */
.nav-panel {
  border-top: 1px solid rgba(15, 23, 32, 0.08);
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-6px);
  opacity: 0;
  transition: transform 0.18s ease, opacity 0.18s ease; }
  .nav-panel .nav-panel-inner {
    padding: 14px 0 18px; }
  .nav-panel .nav-panel-links {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: grid;
    gap: 6px; }
    .nav-panel .nav-panel-links .nav-link {
      display: block;
      padding: 12px 12px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 650;
      background: rgba(15, 23, 32, 0.04);
      color: inherit; }
  .nav-panel .nav-panel-actions {
    display: grid;
    gap: 8px; }

.site-nav.is-open .nav-panel {
  transform: translateY(0);
  opacity: 1; }
.site-nav.is-open .nav-toggle-lines {
  background: transparent; }
  .site-nav.is-open .nav-toggle-lines::before {
    transform: translateY(6px) rotate(45deg); }
  .site-nav.is-open .nav-toggle-lines::after {
    transform: translateY(-6px) rotate(-45deg); }

/* Prevent background scroll when mobile menu is open */
html.nav-open {
  overflow: hidden; }

/* =========================
   FOOTER (SCOPED)
   ========================= */
.site-footer {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.82);
  position: relative; }
  .site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent); }
  .site-footer .site-footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 64px var(--container-pad) 36px; }
  @media (min-width: 992px) {
    .site-footer .site-footer__inner {
      padding: 84px var(--container-pad) 44px; } }
  .site-footer .footer-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #ffffff; }
  .site-footer p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.72); }
  .site-footer .footer-links {
    list-style: none;
    margin: 0;
    padding: 0; }
    .site-footer .footer-links li + li {
      margin-top: 10px; }
    .site-footer .footer-links a {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.72);
      transition: color 0.15s ease; }
      .site-footer .footer-links a:hover {
        color: #ffffff; }
  .site-footer .site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 14px; }
  .site-footer .site-footer__logo {
    max-width: 180px; }
  .site-footer .site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px var(--container-pad); }
  .site-footer .site-footer__bottom-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center; }
  @media (min-width: 768px) {
    .site-footer .site-footer__bottom-inner {
      flex-direction: row;
      justify-content: space-between;
      text-align: left; } }
  .site-footer .footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55); }
  .site-footer .footer-legal {
    display: flex;
    gap: 18px;
    flex-wrap: wrap; }
    .site-footer .footer-legal a {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.55); }
      .site-footer .footer-legal a:hover {
        color: #ffffff; }

/* 3) Components */
/* =========================
   BUTTONS
   ========================= */
.btn {
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 650;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease; }

.btn-primary {
  background: var(--brand);
  border: 1px solid rgba(27, 102, 255, 0.25);
  box-shadow: 0 10px 26px rgba(27, 102, 255, 0.22); }

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(27, 102, 255, 0.26); }

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px var(--focus); }

.link-soft {
  color: var(--text-muted);
  border-bottom: 1px solid transparent; }

.link-soft:hover {
  color: var(--text);
  border-bottom-color: rgba(15, 23, 32, 0.18); }

/* =========================
   FORMS
   ========================= */
.form-card {
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 18px; }
  @media (min-width: 992px) {
    .form-card {
      padding: 26px; } }

.form-label {
  font-weight: 650;
  font-size: 14px;
  margin-bottom: 6px; }

.form-control,
select,
textarea {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 32, 0.14);
  padding: 12px 14px;
  font-size: 16px;
  /* keeps iOS from zooming */
  background: #fff;
  transition: box-shadow 0.15s ease, border-color 0.15s ease, transform 0.12s ease; }

.form-control:focus,
select:focus,
textarea:focus {
  border-color: rgba(27, 102, 255, 0.45);
  outline: none;
  box-shadow: 0 0 0 4px var(--focus); }

.form-help {
  color: var(--text-soft);
  font-size: 13px;
  margin-top: 6px; }

.choice input:checked + span {
  background: rgba(27, 102, 255, 0.08);
  border-color: rgba(27, 102, 255, 0.5); }

/* Step progress (use for your multi-step form UI) */
.stepper {
  display: flex;
  gap: 8px;
  margin-bottom: 14px; }

.stepper__dot {
  height: 6px;
  flex: 1;
  border-radius: 999px;
  background: rgba(15, 23, 32, 0.1); }

.stepper__dot.is-active {
  background: rgba(27, 102, 255, 0.6); }

/* =========================
   FORM VALIDATION EXTENSIONS
   ========================= */
.field-error {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  color: #b42318;
  display: none; }

.field-error:not(:empty) {
  display: block; }

.form-control.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: #f04438;
  background-color: #fff5f4; }
  .form-control.is-invalid:focus,
  select.is-invalid:focus,
  textarea.is-invalid:focus {
    border-color: #f04438;
    box-shadow: 0 0 0 0.15rem rgba(240, 68, 56, 0.15); }

.consent.is-invalid {
  border: 1px solid #f04438;
  background: #fff5f4;
  border-radius: 12px;
  padding: 12px; }

.form-status {
  margin-top: 16px;
  font-size: 15px; }
  .form-status.error {
    color: #b42318; }
  .form-status.success {
    color: #027a48; }

.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1.8s linear infinite; }

button.is-loading {
  pointer-events: none;
  opacity: 0.85; }
  button.is-loading .btn-text {
    opacity: 0.8; }
  button.is-loading .btn-spinner {
    display: inline-block; }

@keyframes spin {
  to {
    transform: rotate(360deg); } }
/* =========================
   CARDS
   ========================= */
.card-premium {
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 16px; }

.card-premium__title {
  font-weight: 750;
  margin: 0 0 6px; }

.card-premium__text {
  margin: 0;
  color: var(--text-muted); }

.choice-grid {
  display: grid;
  gap: 12px; }
  @media (min-width: 768px) {
    .choice-grid {
      grid-template-columns: 1fr 1fr; } }

.choice {
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 14px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease; }

.choice:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-color: rgba(27, 102, 255, 0.18); }

.choice.is-selected {
  border-color: rgba(27, 102, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(27, 102, 255, 0.1), var(--shadow-sm); }

/* =========================
   SECTIONS / LAYOUT PATTERNS
   ========================= */
.split {
  display: grid;
  gap: 22px; }
  @media (min-width: 992px) {
    .split {
      grid-template-columns: 1.05fr 0.95fr;
      gap: 34px;
      align-items: center; } }

/* Premium media card (background-image based) */
.media-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--stroke-soft);
  box-shadow: var(--shadow-sm); }
  @media (min-width: 768px) {
    .media-card {
      min-height: 320px; } }
  @media (min-width: 992px) {
    .media-card {
      min-height: 420px; } }

/* Soft panel wrapper */
.panel {
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 18px; }
  @media (min-width: 992px) {
    .panel {
      padding: 24px; } }

/* =========================
   UTILITIES
   ========================= */
.u-max {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto; }

.u-muted {
  color: var(--text-muted); }

.u-soft {
  color: var(--text-soft); }

.u-stack > * + * {
  margin-top: 12px; }

.u-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--stroke-soft);
  box-shadow: 0 1px 1px rgba(15, 23, 32, 0.05); }

/* 4) Pages */
/* CSS Document */
/* CSS Document */
/* CSS Document */
