:root {
  --purple: #272262;
  --purple-dark: #1C1848;
  --purple-soft: #EFEEF7;
  --purple-mid: #4A4490;
  --coral: #E0503F;
  --coral-dark: #C33F30;
  --coral-soft: #FDEDEB;
  --text: #444444;
  --muted: #6B7280;
  --border: #E4E3EE;
  --soft: #FAFAFD;
  --dark: #151235;
  --radius: 20px;
  --radius-sm: 12px;
  --pill: 50px;
  --shadow: 0 0 30px rgba(39, 34, 98, .09);
  --shadow-lg: 0 10px 40px rgba(39, 34, 98, .14);
  --sp: 72px;
}

body {
  font-family: Manrope, sans-serif;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4 {
  color: var(--purple);
  font-weight: 700
}

h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 800
}

h2 {
  font-size: 2rem;
  line-height: 1.25
}

h3 {
  font-size: 1.15rem;
  line-height: 1.35
}

a {
  color: var(--purple-mid);
  text-decoration: none
}

a:hover {
  color: var(--purple)
}

.container {
  max-width: 1320px
}

.section {
  padding: var(--sp) 0
}

.bg-soft {
  background: var(--soft)
}

.measure {
  max-width: 62ch
}

.lead-txt {
  font-size: 1.15rem;
  line-height: 1.75
}

.muted {
  color: var(--muted)
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 6px
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important
  }
}

.btn {
  border-radius: var(--pill);
  font-weight: 700
}

.btn-coral {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff
}

.btn-coral:hover,
.btn-coral:focus {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  color: #fff
}

.btn-purple {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff
}

.btn-purple:hover,
.btn-purple:focus {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  color: #fff
}

.btn-ghost {
  border: 2px solid var(--border);
  color: var(--purple);
  background: #fff
}

.btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple)
}

.btn-xl {
  padding: 14px 30px;
  font-size: 1rem
}

.deadline-bar {
  background: var(--purple-dark);
  color: #fff;
  font-size: .95rem
}

.deadline-bar .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: .7rem 1rem;
  text-align: center
}

.deadline-bar .pill {
  background: rgba(255, 255, 255, .15);
  border-radius: var(--pill);
  padding: .25rem .8rem;
  font-weight: 700;
  white-space: nowrap
}

.deadline-bar a.cta {
  background: var(--coral);
  color: #fff;
  border-radius: var(--pill);
  padding: .35rem 1.1rem;
  font-weight: 700;
  white-space: nowrap
}

.deadline-bar a.cta:hover {
  background: var(--coral-dark);
  color: #fff
}

.site-nav {
  background: #fff;
  box-shadow: 0 2px 18px rgba(39, 34, 98, .07);
  padding: .6rem 0
}

.site-nav .nav-link {
  color: var(--purple);
  font-weight: 600;
  padding: .5rem .9rem;
  font-size: .97rem
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--coral)
}

.navbar-brand img {
  height: 38px;
  width: auto
}

.hero {
  background: var(--soft);
  padding: 64px 0 72px
}

.hero ul {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0
}

.hero li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  margin-bottom: .7rem;
  font-size: 1.02rem
}

.hero li svg {
  flex: none;
  margin-top: 5px
}

.card-s {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  height: 100%
}

.card-o {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%
}

.card-s h3,
.card-o h3 {
  margin-bottom: .6rem
}

.card-s p,
.card-o p {
  margin-bottom: 0
}

.path {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  height: 100%;
  border-top: 4px solid var(--purple);
  display: flex;
  flex-direction: column
}

.path.b {
  border-top-color: var(--coral)
}

.path.c {
  border-top-color: var(--purple-mid)
}

.path .who {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: .5rem
}

.path.b .who {
  color: var(--coral)
}

.path .foot {
  margin-top: auto;
  padding-top: 1.3rem
}

.ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  background: var(--purple-soft);
  color: var(--purple)
}

.ico.c {
  background: var(--coral-soft);
  color: var(--coral-dark)
}

.callout {
  background: var(--coral-soft);
  border-left: 4px solid var(--coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.4rem 1.6rem
}

.callout p:last-child {
  margin-bottom: 0
}

.step {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border)
}

.step:last-child {
  border-bottom: 0
}

.step-n {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--purple-soft);
  color: var(--purple);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center
}

.step p {
  margin: 0
}

.trust {
  background: var(--purple);
  color: #fff;
  border-radius: var(--radius);
  padding: 44px 40px
}

.trust h2,
.trust h3 {
  color: #fff
}

.trust p {
  color: rgba(255, 255, 255, .86)
}

.trust .item {
  padding: 1.3rem 0;
  border-top: 1px solid rgba(255, 255, 255, .18)
}

.trust a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px
}

.trust a:hover {
  color: #fff;
  opacity: .8
}

.reg {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255, 255, 255, .13);
  border-radius: var(--pill);
  padding: .28rem .8rem;
  font-size: .8rem;
  font-weight: 700;
  margin: .2rem .3rem .2rem 0;
  color: #fff
}

.trust .item:first-of-type {
  border-top: 0
}

.accordion-item {
  border: 0;
  border-bottom: 1px solid var(--border);
  background: transparent
}

.accordion-button {
  background: transparent;
  font-weight: 700;
  color: var(--purple);
  font-size: 1.05rem;
  padding: 1.3rem 0;
  box-shadow: none
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--coral);
  box-shadow: none
}

.accordion-button:focus {
  box-shadow: none
}

.accordion-body {
  padding: 0 0 1.4rem;
  color: var(--muted);
  max-width: 72ch;
  line-height: 1.75
}

.contact-panel {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 36px
}

.form-label {
  font-weight: 600;
  font-size: .92rem;
  margin-bottom: .3rem;
  color: var(--purple)
}

.form-control,
.form-select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .7rem .9rem
}

.form-control:focus,
.form-select:focus {
  border-color: var(--purple-mid);
  box-shadow: 0 0 0 3px var(--purple-soft)
}

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .82);
  padding: 60px 0 28px
}

.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem
}

.site-footer a {
  color: rgba(255, 255, 255, .82)
}

.site-footer a:hover {
  color: #fff
}

.f-list {
  list-style: none;
  padding: 0;
  margin: 0
}

.f-list li {
  margin-bottom: .5rem;
  font-size: .94rem
}

.f-legal {
  border-top: 1px solid rgba(255, 255, 255, .16);
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .65)
}

@media (max-width:991.98px) {
  :root {
    --sp: 52px
  }

  h1 {
    font-size: 2rem
  }

  h2 {
    font-size: 1.6rem
  }

  .hero {
    padding: 44px 0 52px
  }

  .trust {
    padding: 30px 24px
  }

  .contact-panel {
    padding: 24px
  }
}

/* Toast notifications */
.toast-container {
  z-index: 1090;
}

.toast.toast-brand {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--purple);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  font-family: Manrope, sans-serif;
  min-width: 320px;
  max-width: 420px;
}

.toast.toast-brand.toast-success {
  border-left-color: #2E9E6B;
}

.toast.toast-brand.toast-error {
  border-left-color: var(--coral);
}

.toast.toast-brand .toast-body {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.5;
}

.toast.toast-brand .toast-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  background: var(--purple);
}

.toast.toast-brand.toast-success .toast-icon {
  background: #2E9E6B;
}

.toast.toast-brand.toast-error .toast-icon {
  background: var(--coral);
}

.toast.toast-brand .btn-close {
  flex: 0 0 auto;
  margin-left: auto;
  font-size: .7rem;
  opacity: .5;
}

@media (max-width: 480px) {
  .toast.toast-brand {
    min-width: 0;
    width: calc(100vw - 32px);
  }
}
