@font-face {
  font-family: "Aileron Light";
  font-style: normal;
  font-weight: normal;
  src: local("Aileron Light"), url("fonts/Aileron-Light.woff") format("woff");
}
@font-face {
  font-family: "Aileron Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Aileron Bold"), url("fonts/Aileron-Bold.woff") format("woff");
}
@font-face {
  font-family: "Aileron Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Aileron Regular"), url("fonts/Aileron-Regular.woff") format("woff");
}
@font-face {
  font-family: "Aileron SemiBold";
  font-style: normal;
  font-weight: normal;
  src: local("Aileron SemiBold"), url("fonts/Aileron-SemiBold.woff") format("woff");
}
.header-sticky {
  position: sticky;
  top: 0;
  z-index: 1050;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar-custom {
  padding: 0;
}

.navbar-brand-section {
  background: white;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  position: relative;
}

.logo-p {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  position: relative;
}
.logo-p::before {
  content: "P";
  position: absolute;
  background: linear-gradient(135deg, #ff0000 0%, #ff6b00 25%, #0066ff 50%, #482BE7 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-text .progress {
  font-weight: 700;
  font-size: 20px;
  color: #000;
  font-family: "Aileron Regular", sans-serif;
}
.logo-text .preview {
  font-size: 14px;
  color: #dc3545;
  font-weight: 400;
  font-family: "Aileron Regular", sans-serif;
}

.navbar-nav-section {
  padding: 1rem 2rem;
  flex-grow: 1;
  min-width: 0;
}

.navbar-nav .nav-link {
  color: #4a5568 !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  font-family: "Aileron Regular", sans-serif;
}
.navbar-nav .nav-link:hover {
  color: #482BE7 !important;
}

.btn-signup {
  background-color: #482BE7;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-family: "Aileron Regular", sans-serif;
}
.btn-signup:hover {
  background-color: #5a32a3;
  color: white;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  background-color: #000;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (min-width: 992px) {
  .navbar-custom .container-fluid {
    justify-content: space-between;
  }
  .navbar-toggler {
    display: none;
  }
  .navbar-nav-section .collapse {
    display: block !important;
  }
}
@media (max-width: 991.98px) {
  .navbar-custom .container-fluid {
    flex-direction: column;
  }
  .navbar-brand-section {
    width: 100%;
    padding: 1rem 0;
    justify-content: space-between;
  }
  .navbar-nav-section {
    width: 100%;
    padding: 0.5rem 1rem;
    background: #303EB4;
    flex-direction: column;
    align-items: flex-start !important;
    position: absolute;
    top: 100%;
    right: 0;
  }
  .navbar-toggler {
    margin-left: auto;
    order: 2;
  }
  .navbar-nav {
    padding: 1rem 0;
    width: 100%;
  }
  .navbar-nav .nav-link {
    padding: 0.75rem 0 !important;
    color: #ffffff !important;
  }
  .navbar-nav .nav-link:hover {
    color: #ffffff !important;
  }
  .navbar-nav .nav-item.ms-2 {
    margin-left: 0 !important;
    margin-top: 0.5rem;
  }
}
.footer-custom {
  background-color: #303EB4;
  color: #ffffff;
  font-family: "Aileron Regular", sans-serif;
  padding: 3rem 0 2rem;
}
.footer-custom .container {
  max-width: 1200px;
}

.footer-top {
  display: flex;
  justify-content: flex-start;
  gap: 2.5rem;
  padding-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}
.footer-link:hover {
  color: #ffffff;
  opacity: 0.8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-divider {
  border: none;
  border-top: 1px solid #ffffff;
  margin: 1.5rem 0 2rem;
  opacity: 0.3;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-brand {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  font-family: "Aileron Regular", sans-serif;
  line-height: 1.2;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  font-family: "Aileron Regular", sans-serif;
  line-height: 1.5;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-legal-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Aileron Regular", sans-serif;
  transition: opacity 0.3s ease;
}
.footer-legal-link:hover {
  color: #ffffff;
  opacity: 0.8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-icon {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: opacity 0.3s ease;
}
.social-icon svg {
  width: 100%;
  height: 100%;
}
.social-icon:hover {
  color: #ffffff;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-custom {
    padding: 2rem 0 1.5rem;
  }
  .footer-top {
    gap: 1.5rem;
    padding-bottom: 1rem;
  }
  .footer-link {
    font-size: 12px;
  }
  .footer-divider {
    margin: 1rem 0 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .footer-left {
    width: 100%;
    flex-direction: column;
    align-items: flex-start !important;
  }
  .footer-brand {
    font-size: 28px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 13px;
    margin-top: 0.5rem;
    margin-left: 0 !important;
  }
  .footer-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
  }
  .footer-legal {
    /*flex-direction: column;*/
    align-items: flex-start;
    gap: 0.75rem;
  }
  .footer-legal-link {
    font-size: 13px;
  }
  .footer-social {
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .footer-top {
    gap: 1rem;
  }
  .footer-brand {
    font-size: 24px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 12px;
    margin-top: 0.25rem;
  }
  .footer-left {
    gap: 0.5rem;
  }
}
.hero-section {
  padding: 4rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  font-family: "Aileron Regular", sans-serif;
}
.hero-section .container {
  max-width: 1200px;
}

.phone-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
}

.phone-screen {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 20px 15px 25px;
  width: 280px;
  height: 560px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.phone-header {
  background-color: #482BE7;
  height: 50px;
  border-radius: 15px 15px 0 0;
  margin: -20px -15px 20px -15px;
}

.chart-container {
  padding: 20px 15px;
  height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  height: 100%;
}

.bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  max-width: 35px;
}

.bar-segment {
  width: 100%;
  border-radius: 2px 2px 0 0;
}

.bar-segment-1 {
  background-color: #1E3A8A;
  height: 30%;
}

.bar-segment-2 {
  background-color: #3B82F6;
  height: 35%;
}

.bar-segment-3 {
  background-color: #FF6B35;
  height: 35%;
}

.bar:nth-child(1) .bar-segment-1 {
  height: 25%;
}
.bar:nth-child(1) .bar-segment-2 {
  height: 30%;
}
.bar:nth-child(1) .bar-segment-3 {
  height: 25%;
}

.bar:nth-child(2) .bar-segment-1 {
  height: 30%;
}
.bar:nth-child(2) .bar-segment-2 {
  height: 35%;
}
.bar:nth-child(2) .bar-segment-3 {
  height: 30%;
}

.bar:nth-child(3) .bar-segment-1 {
  height: 35%;
}
.bar:nth-child(3) .bar-segment-2 {
  height: 40%;
}
.bar:nth-child(3) .bar-segment-3 {
  height: 35%;
}

.bar:nth-child(4) .bar-segment-1 {
  height: 40%;
}
.bar:nth-child(4) .bar-segment-2 {
  height: 45%;
}
.bar:nth-child(4) .bar-segment-3 {
  height: 40%;
}

.bar:nth-child(5) .bar-segment-1 {
  height: 45%;
}
.bar:nth-child(5) .bar-segment-2 {
  height: 50%;
}
.bar:nth-child(5) .bar-segment-3 {
  height: 45%;
}

.bar:nth-child(6) .bar-segment-1 {
  height: 50%;
}
.bar:nth-child(6) .bar-segment-2 {
  height: 55%;
}
.bar:nth-child(6) .bar-segment-3 {
  height: 50%;
}

.phone-content {
  padding: 20px 15px;
  text-align: center;
}

.phone-text {
  color: #482BE7;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  font-family: "Aileron Regular", sans-serif;
}

.phone-home-button {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(0, 0, 0, 0.2);
}

.speech-bubble {
  position: absolute;
  top: 20px;
  right: -40px;
  z-index: 10;
}

.speech-bubble-content {
  background-color: #E0F2FE;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.speech-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #1E3A8A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.speech-icon::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #ffffff;
}

.speech-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.speech-line {
  height: 3px;
  border-radius: 2px;
  background-color: #3B82F6;
}
.speech-line.speech-line-1 {
  width: 20px;
}
.speech-line.speech-line-2, .speech-line.speech-line-3 {
  width: 30px;
  background-color: #FF6B35;
}

.signup-form-container {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  border: 1px solid #482BE7;
  margin: 0 auto;
}

.signup-title {
  color: #1E0E62;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: "Aileron Regular", sans-serif;
  text-align: center;
}

.signup-input {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  color: #1F2937;
  font-family: "Aileron Regular", sans-serif;
  background-color: #ffffff;
}
.signup-input::-moz-placeholder {
  color: #9CA3AF;
  font-size: 16px;
}
.signup-input::placeholder {
  color: #9CA3AF;
  font-size: 16px;
}
.signup-input:focus {
  border-color: #482BE7;
  box-shadow: 0 0 0 3px rgba(72, 43, 231, 0.1);
  outline: none;
}
.signup-input.is-invalid {
  border-color: #DC2626;
  background-image: none !important;
  padding-right: 16px;
}
.signup-input.is-valid {
  background-image: none !important;
  padding-right: 16px;
}
.signup-input:valid:not(:-moz-placeholder-shown) {
  background-image: none !important;
  padding-right: 16px;
}
.signup-input:valid:not(:placeholder-shown) {
  background-image: none !important;
  padding-right: 16px;
}
.signup-input:invalid:not(:-moz-placeholder-shown) {
  background-image: none !important;
  padding-right: 16px;
}
.signup-input:invalid:not(:placeholder-shown) {
  background-image: none !important;
  padding-right: 16px;
}

.form-check {
  padding-left: 0;
  align-items: flex-start;
  gap: 10px;
}

.form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 2px solid #482BE7;
  border-radius: 4px;
  flex-shrink: 0;
}
.form-check-input:checked {
  background-color: #482BE7;
  border-color: #482BE7;
}
.form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(72, 43, 231, 0.1);
}
.form-check-input.is-invalid {
  border-color: #DC2626;
}

.form-check-label {
  color: #9CA3AF;
  font-size: 14px;
  font-family: "Aileron Regular", sans-serif;
  line-height: 1.5;
  cursor: pointer;
}

.btn-signin {
  background: #3163D5;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  font-family: "Aileron Regular", sans-serif;
  transition: opacity 0.3s ease;
  border: 1px solid #3163D5;
}
.btn-signin:hover {
  background: #fff;
  color: #000000;
  border: 1px solid #3163D5;
}
.btn-signin:active {
  transform: translateY(1px);
}

.invite-text {
  color: #9CA3AF;
  font-size: 14px;
  font-family: "Aileron Regular", sans-serif;
}

.invite-link {
  color: #3163D5;
  text-decoration: none;
  font-size: 14px;
  font-family: "Aileron Regular", sans-serif;
  margin-left: 5px;
}
.invite-link:hover {
  text-decoration: underline;
  color: #3B82F6;
}

.invalid-feedback {
  display: block;
  font-size: 14px;
  color: #DC2626;
  margin-top: 5px;
  font-family: "Aileron Regular", sans-serif;
}

@media (max-width: 991.98px) {
  .phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 300px !important;
    margin: 0 auto;
  }
  .hero-section {
    padding: 3rem 0;
  }
  .signup-form-container {
    padding: 30px;
    max-width: 100%;
  }
  .signup-title {
    font-size: 28px;
  }
  .speech-bubble {
    right: -20px;
    top: 10px;
  }
}
@media (max-width: 767.98px) {
  .phone-screen {
    width: 240px;
    height: 480px;
    padding: 15px 12px 20px;
  }
  .phone-header {
    height: 40px;
    margin: -15px -12px 15px -12px;
  }
  .chart-container {
    padding: 15px 10px;
    height: 240px;
  }
  .phone-text {
    font-size: 14px;
  }
  .signup-form-container {
    padding: 25px;
  }
  .signup-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .speech-bubble {
    display: none;
  }
}
.problem-solving-section {
  background-color: #303EB4;
  padding: 80px 20px;
  text-align: center;
  font-family: "Aileron Regular", sans-serif;
}
.problem-solving-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.problem-solving-section .section-label {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 24px 0;
  line-height: 1.5;
}
.problem-solving-section .section-headline {
  color: #ffffff;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 32px 0;
  letter-spacing: -0.5px;
}
.problem-solving-section .section-description {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 800px;
}
.problem-solving-section .highlight-orange {
  color: #FF6B35;
}

@media (max-width: 991.98px) {
  .problem-solving-section {
    padding: 60px 20px;
  }
  .problem-solving-section .section-headline {
    font-size: 42px;
  }
  .problem-solving-section .section-description {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .problem-solving-section {
    padding: 50px 20px;
  }
  .problem-solving-section .section-label {
    font-size: 11px;
    margin-bottom: 20px;
  }
  .problem-solving-section .section-headline {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .problem-solving-section .section-description {
    font-size: 15px;
  }
}
.features-section {
  padding: 80px 20px;
  font-family: "Aileron Regular", sans-serif;
}
.features-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.easy-steps-title {
  color: #1E0E62;
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 60px 0;
  font-family: "Aileron Regular", sans-serif;
  line-height: 1.2;
}

.steps-container {
  position: relative;
  padding-left: 0px;
}

.step-item {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}
.step-item:last-child {
  margin-bottom: 0;
}

.step-number-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 30px;
  flex-shrink: 0;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #D1D5DB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9594A5;
  font-size: 24px;
  font-weight: 600;
  font-family: "Aileron Regular", sans-serif;
  z-index: 2;
}

.step-line {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 50px);
  background-color: #EBEAED;
  z-index: 1;
}

.step-item:last-child .step-number-wrapper .step-line {
  display: none;
}

.step-content {
  flex: 1;
  padding-top: 5px;
}

.step-title {
  color: #15035C;
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 12px 0;
  font-family: "Aileron Regular", sans-serif;
  line-height: 1.3;
}

.step-description {
  color: #9CA3AF;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 20px 0;
  font-family: "Aileron Regular", sans-serif;
}

.step-link {
  color: #9CA3AF;
  text-decoration: none;
  font-family: "Aileron Regular", sans-serif;
}
.step-link:hover {
  text-decoration: underline;
  color: #9CA3AF;
}

.step-sub-sections {
  display: flex;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.sub-section {
  flex: 1;
  min-width: 250px;
}

.sub-section-title {
  color: #3B82F6;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 8px 0;
  font-family: "Aileron Regular", sans-serif;
  line-height: 1.4;
}

.sub-section-description {
  color: #9CA3AF;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  font-family: "Aileron Regular", sans-serif;
}

.signup-button-container {
  margin-top: 60px;
}

.btn-signup-free {
  background-color: #3163D5;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 16px 48px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Aileron Regular", sans-serif;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border: 1px solid #3163D5;
}
.btn-signup-free:hover {
  opacity: 0.9;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #3163D5;
}
.btn-signup-free:active {
  transform: translateY(1px);
}

@media (max-width: 991.98px) {
  .features-section {
    padding: 60px 20px;
  }
  .easy-steps-title {
    font-size: 40px;
    margin-bottom: 50px;
  }
  .steps-container {
    padding-left: 30px;
  }
  .step-number-wrapper {
    margin-right: 25px;
  }
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
  .step-title {
    font-size: 22px;
  }
  .step-sub-sections {
    gap: 30px;
  }
}
@media (max-width: 767.98px) {
  .features-section {
    padding: 50px 20px;
  }
  .easy-steps-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .steps-container {
    padding-left: 0px;
  }
  .step-item {
    margin-bottom: 40px;
  }
  .step-number-wrapper {
    margin-right: 20px;
  }
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .step-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .step-description {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .step-sub-sections {
    flex-direction: column;
    gap: 25px;
    margin-top: 15px;
  }
  .sub-section {
    min-width: 100%;
  }
  .sub-section-title {
    font-size: 15px;
  }
  .sub-section-description {
    font-size: 15px;
  }
  .signup-button-container {
    margin-top: 50px;
  }
  .btn-signup-free {
    padding: 14px 40px;
    font-size: 16px;
  }
}
.features-grid-section {
  background-color: #303EB4;
  padding: 80px 20px;
  font-family: "Aileron Regular", sans-serif;
}
.features-grid-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid-title {
  color: #ffffff;
  font-size: 56px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 60px 0;
  font-family: "Aileron Regular", sans-serif;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
}

.feature-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: start;
  display: flex;
  flex-direction: column;
  align-items: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  color: #ffffff;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}
.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 16px 0;
  font-family: "Aileron Regular", sans-serif;
  line-height: 1.4;
}

.feature-description {
  color: #ECEDF8;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  font-family: "Aileron Regular", sans-serif;
}

@media (max-width: 991.98px) {
  .features-grid-section {
    padding: 60px 20px;
  }
  .features-grid-title {
    font-size: 42px;
    margin-bottom: 50px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .feature-card {
    padding: 35px 25px;
  }
  .feature-icon {
    margin-bottom: 20px;
    width: 44px;
    height: 44px;
  }
  .feature-title {
    font-size: 15px;
    margin-bottom: 14px;
  }
  .feature-description {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .features-grid-section {
    padding: 50px 20px;
  }
  .features-grid-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-card {
    padding: 30px 20px;
  }
  .feature-icon {
    margin-bottom: 18px;
    width: 40px;
    height: 40px;
  }
  .feature-title {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .feature-description {
    font-size: 14px;
  }
}
.is-this-app-section {
  padding: 80px 20px 100px;
  font-family: "Aileron Regular", sans-serif;
  color: #FFFFFF;
}
.is-this-app-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.is-this-app-top {
  text-align: center;
  margin-bottom: 80px;
}

.is-this-app-heading {
  color: #1E0E62;
  font-size: 56px;
  font-weight: 700;
  margin: 0 0 24px 0;
  font-family: "Aileron Regular", sans-serif;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.is-this-app-description {
  color: #9CA3AF;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 48px 0;
  font-family: "Aileron Regular", sans-serif;
}

.professions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 60px;
  max-width: 800px;
  margin: 0 auto;
  justify-items: start;
}

.professions-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.profession-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1E0E62;
  font-size: 16px;
  font-weight: 400;
  font-family: "Aileron Regular", sans-serif;
  line-height: 1.5;
}

.profession-icon {
  color: #B794F6;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.is-this-app-bottom {
  margin-top: 60px;
}

.logo-p-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.logo-p-graphic svg {
  max-width: 100%;
  height: auto;
}

.logo-reflection {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  margin: 10px auto 0;
  opacity: 0.5;
}

.create-account-container {
  background-color: transparent;
  padding: 0;
  max-width: 500px;
  margin-left: auto;
}

.create-account-title {
  color: #1E0E62;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px 0;
  font-family: "Aileron Regular", sans-serif;
  line-height: 1.2;
}

.create-account-disclaimer {
  color: #9CA3AF;
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 32px 0;
  font-family: "Aileron Regular", sans-serif;
  line-height: 1.5;
}

.create-account-container .form-label {
  color: #1E0E62;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  font-family: "Aileron Regular", sans-serif;
}

.create-account-input {
  background-color: #FFFFFF;
  border: 1px solid #EBEAED;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  color: #1F2937;
  font-family: "Aileron Regular", sans-serif;
  height: 48px;
}
.create-account-input::-moz-placeholder {
  color: #EBEAED;
  font-size: 16px;
}
.create-account-input::placeholder {
  color: #EBEAED;
  font-size: 16px;
}
.create-account-input:focus {
  border-color: #482BE7;
  box-shadow: 0 0 0 3px rgba(72, 43, 231, 0.1);
  outline: none;
  background-color: #FFFFFF;
  color: #1F2937;
}
.create-account-input.is-invalid {
  border-color: #DC2626;
  background-image: none !important;
  padding-right: 16px;
}
.create-account-input.is-valid {
  background-image: none !important;
  padding-right: 16px;
}

.btn-signup-account {
  background-color: #3163D5;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Aileron Regular", sans-serif;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  border: 1px solid #3163D5;
}
.btn-signup-account:hover {
  opacity: 0.9;
  color: #000;
  background-color: #ffffff;
  border: 1px solid #3163D5;
}
.btn-signup-account:active {
  transform: translateY(1px);
}

.or-divider {
  color: #9CA3AF;
  font-size: 14px;
  font-weight: 400;
  font-family: "Aileron Regular", sans-serif;
}

.social-login-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icon-circle svg {
  width: 16px;
  height: 16px;
}
.social-icon-circle:hover {
  opacity: 0.8;
  color: #FFFFFF;
}

.create-account-container .invalid-feedback {
  display: block;
  font-size: 14px;
  color: #DC2626;
  margin-top: 5px;
  font-family: "Aileron Regular", sans-serif;
}

@media (max-width: 991.98px) {
  .is-this-app-section {
    padding: 60px 20px 80px;
  }
  .is-this-app-heading {
    font-size: 42px;
    margin-bottom: 20px;
  }
  .is-this-app-description {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .professions-grid {
    gap: 20px 40px;
  }
  .profession-item {
    font-size: 15px;
  }
  .create-account-title {
    font-size: 28px;
  }
  .is-this-app-bottom {
    margin-top: 50px;
  }
}
@media (max-width: 767.98px) {
  .is-this-app-section {
    padding: 50px 20px 60px;
  }
  .is-this-app-heading {
    font-size: 36px;
    margin-bottom: 16px;
  }
  .is-this-app-description {
    font-size: 15px;
    margin-bottom: 32px;
  }
  .professions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }
  .profession-item {
    font-size: 14px;
    gap: 10px;
  }
  .profession-icon {
    width: 18px;
    height: 18px;
  }
  .is-this-app-bottom {
    margin-top: 40px;
  }
  .logo-p-graphic {
    margin-bottom: 30px;
  }
  .logo-p-graphic svg {
    max-width: 150px;
  }
  .logo-reflection {
    width: 150px;
  }
  .create-account-container {
    max-width: 100%;
    margin-left: 0;
  }
  .create-account-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .create-account-disclaimer {
    font-size: 13px;
    margin-bottom: 24px;
  }
  .d-flex.align-items-center {
    /*flex-direction: column;*/
    align-items: flex-start !important;
    gap: 16px;
  }
  .btn-signup-account {
    width: 100%;
    padding: 14px 24px;
  }
  .or-divider {
    display: none;
  }
  .social-login-icons {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .is-this-app-heading {
    font-size: 28px;
  }
  .professions-column {
    gap: 14px;
  }
  .profession-item {
    font-size: 13px;
  }
  .create-account-title {
    font-size: 22px;
  }
  .create-account-input {
    font-size: 14px;
    padding: 10px 14px;
    height: 44px;
  }
}
.testimonials-section {
  padding: 100px 20px 120px;
  font-family: "Aileron Regular", sans-serif;
  background-color: #F6F6F6;
}
.testimonials-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-heading {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #1E0E62;
  margin: 0 0 80px 0;
  letter-spacing: 0.3px;
}

.testimonials-row {
  display: flex;
  justify-content: space-between;
  gap: 120px;
  margin-bottom: 70px;
}
.testimonials-row:last-child {
  margin-bottom: 0;
}

.testimonial-item {
  display: flex;
  align-items: flex-start;
  flex: 1 1 0;
}

.testimonial-avatar {
  flex-shrink: 0;
  margin-right: 32px;
}
.testimonial-avatar img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.testimonial-content {
  max-width: 380px;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.8;
  color: #4A4A4A;
  margin: 0 0 28px 0;
}

.testimonial-name {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #1E0E62;
  margin: 0 0 6px 0;
}

.testimonial-company {
  font-size: 13px;
  color: #9B9B9B;
  margin: 0;
}

.invite-banner-section {
  padding: 100px 20px 100px;
}
.invite-banner-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.invite-banner-card {
  background-color: #EFEFEF;
  border-radius: 8px;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  max-width: 1071px;
  min-height: 176px;
  font-family: "Aileron Regular", sans-serif;
}

.invite-banner-left {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.invite-banner-logo {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.invite-banner-logo img {
  max-width: 110px;
  height: auto;
}

.invite-banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.invite-banner-title {
  color: #1E0E62;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.invite-banner-subtitle {
  color: #9CA3AF;
  font-size: 14px;
  margin: 0;
}

.invite-banner-right {
  flex-shrink: 0;
}

.invite-banner-btn {
  padding: 10px 32px;
  border-radius: 999px;
  border: 1.5px solid #482BE7;
  background-color: transparent;
  color: #482BE7;
  font-size: 16px;
  font-weight: 600;
  font-family: "Aileron Regular", sans-serif;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.invite-banner-btn:hover {
  background-color: #482BE7;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(72, 43, 231, 0.25);
}
.invite-banner-btn:active {
  transform: translateY(1px);
}

@media (max-width: 767.98px) {
  .invite-banner-section {
    padding: 32px 16px 48px;
  }
  .invite-banner-card {
    border-radius: 24px;
    padding: 20px 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    gap: 16px;
  }
  .invite-banner-left {
    align-items: flex-start;
  }
  .invite-banner-title {
    font-size: 18px;
  }
  .invite-banner-subtitle {
    font-size: 13px;
  }
  .invite-banner-right {
    width: 100%;
  }
  .invite-banner-btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 991.98px) {
  .testimonials-section {
    padding: 80px 20px 90px;
  }
  .testimonials-heading {
    font-size: 34px;
    margin-bottom: 60px;
  }
  .testimonials-row {
    gap: 60px;
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .testimonials-section {
    padding: 60px 20px 70px;
  }
  .testimonials-heading {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .testimonials-row {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }
  .testimonial-item {
    align-items: flex-start;
  }
  .testimonial-avatar {
    margin-right: 20px;
  }
  .testimonial-avatar img {
    width: 64px;
    height: 64px;
  }
  .testimonial-content {
    max-width: 100%;
  }
  .testimonial-quote {
    font-size: 15px;
    margin-bottom: 22px;
  }
}
@media (max-width: 575.98px) {
  .testimonials-section {
    padding: 50px 16px 60px;
  }
  .testimonials-heading {
    font-size: 26px;
    margin-bottom: 32px;
  }
  .testimonial-quote {
    font-size: 14px;
    line-height: 1.7;
  }
  .testimonial-name,
  .testimonial-company {
    font-size: 12px;
  }
}
.faq-section {
  background-color: #ffffff;
  padding: 0px 20px 110px;
  font-family: "Aileron Regular", sans-serif;
}
.faq-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-heading {
  color: #1E0E62;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 80px 0;
  letter-spacing: 0.3px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px 90px;
}

.faq-item {
  max-width: 430px;
}

.faq-question {
  color: #1E0E62;
  font-size: 19px;
  font-weight: 400;
  margin: 0 0 16px 0;
}

.faq-answer {
  color: #A1A1B0;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 991.98px) {
  .faq-section {
    padding: 80px 20px 90px;
  }
  .faq-heading {
    font-size: 40px;
    margin-bottom: 60px;
  }
  .faq-grid {
    gap: 50px 60px;
  }
}
@media (max-width: 767.98px) {
  .faq-section {
    padding: 60px 20px 70px;
  }
  .faq-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .faq-item {
    max-width: 100%;
  }
  .faq-question {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .faq-answer {
    font-size: 15px;
  }
}
.invite-signup-section {
  padding: 90px 20px 110px;
  background-color: #F6F6F6;
  font-family: "Aileron Regular", sans-serif;
}
.invite-signup-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.invite-signup-inner {
  text-align: center;
}

.invite-signup-heading {
  font-size: 40px;
  font-weight: 700;
  color: #1E0E62;
  margin: 0 0 12px 0;
}

.invite-signup-subtitle {
  font-size: 18px;
  color: #9C9CAB;
  margin: 0 0 36px 0;
}

.invite-signup-card {
  margin: 0 auto;
  max-width: 570px;
  border-radius: 10px;
  border: 2px solid #3163D5;
  padding: 40px 48px 32px;
  text-align: center;
}

.invite-plan-label {
  font-size: 20px;
  font-weight: 600;
  color: #1E0E62;
  margin: 0 0 8px 0;
}

.invite-plan-metadata {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1E0E62;
  margin: 0 0 18px 0;
}

.invite-plan-copy {
  font-size: 18px;
  line-height: 1.7;
  color: #9C9CAB;
  margin: 0 0 28px 0;
}

.invite-plan-product {
  color: #3163D5;
  font-weight: 600;
}

.invite-form {
  margin-top: 4px;
}

.invite-input-wrapper {
  height: 100%;
}

.invite-code-input {
  border-radius: 999px;
  border: 1.5px solid #D1D5DB;
  padding: 14px 20px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1E0E62;
}
.invite-code-input::-moz-placeholder {
  color: #1E0E62;
}
.invite-code-input::placeholder {
  color: #1E0E62;
}
.invite-code-input:focus {
  border-color: #3163D5;
  box-shadow: 0 0 0 3px rgba(49, 99, 213, 0.15);
  outline: none;
}

.invite-signin-btn {
  border-radius: 999px;
  background-color: #3163D5;
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  font-family: "Aileron Regular", sans-serif;
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}
.invite-signin-btn:hover {
  background-color: #3D71EA;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(61, 113, 234, 0.4);
}
.invite-signin-btn:active {
  transform: translateY(1px);
  box-shadow: 0 8px 20px rgba(49, 99, 213, 0.3);
}

@media (max-width: 767.98px) {
  .invite-signup-section {
    padding: 60px 16px 70px;
  }
  .invite-signup-heading {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .invite-signup-subtitle {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .invite-signup-card {
    max-width: 100%;
    padding: 28px 20px 24px;
    border-radius: 16px;
  }
  .invite-plan-label {
    font-size: 18px;
  }
  .invite-plan-copy {
    font-size: 14px;
    margin-bottom: 22px;
  }
}
@media (max-width: 575.98px) {
  .invite-code-input {
    font-size: 13px;
    padding: 12px 18px;
  }
  .invite-signin-btn {
    width: 100%;
    margin-top: 4px;
  }
}
.fs-size-36 {
  font-size: 2.25rem !important;
}

.fs-size-28 {
  font-size: 1.75rem !important;
}

.my-icon {
  color: #482BE7; /* Blue */
}

.icon:hover {
  filter: brightness(0) saturate(100%) invert(55%) sepia(51%) saturate(2738%) hue-rotate(190deg) brightness(94%) contrast(87%);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background-color: #482BE7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  z-index: 1000;
}
.back-to-top i {
  font-size: 18px;
}
.back-to-top:hover {
  background-color: #5a32a3;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(16px);
}
.back-to-top:active {
  transform: translateY(22px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.form-control.is-invalid, .was-validated .form-control:invalid {
  border-color: var(--bs-form-invalid-border-color);
  padding-right: calc(1.5em + 0.75rem);
  background-image: inherit !important;
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}/*# sourceMappingURL=styles.css.map */