/* -- FONTS -- */
@font-face {
    font-family: "Nectly Poppins Headline";
    src: url('../fonts/Nectly-Poppins-Headline.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.inter-regular {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.inter-medium {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.inter-semibold {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}


/* -- VARIABLES -- */

:root {
  --Midnight-Blue: #000042;
  --Electric-Blue: #283AFF;
  --Neon-Green: #9CFF31;
  --Pink: #FF58B8;
  --White: #FFFFFF;
  --Light-Blue: #EAEBFF;
  --Grey: #F3F3F3;
  --Darker-Grey: #CCCCCC;
  --spring-easing: linear(
    0, 0.009, 0.035 2.1%, 0.141, 0.281 6.7%, 0.723 12.9%, 0.938 16.7%, 1.017,
    1.077, 1.121, 1.149 24.3%, 1.159, 1.163, 1.161, 1.154 29.9%, 1.129 32.8%,
    1.051 39.6%, 1.017 43.1%, 0.991, 0.977 51%, 0.974 53.8%, 0.975 57.1%,
    0.997 69.8%, 1.003 76.9%, 1.004 83.8%, 1
  );
  --spring-duration: 1.333s;
}

.color-midnight-blue {
  color: var(--Midnight-Blue);
}

.color-electric-blue {
  color: var(--Electric-Blue);
}

.color-white {
  color: var(--White) !important;
}

.color-pink {
  color: var(--Pink);
}

.background-white {
  background-color: var(--White);
}

.background-light-blue {
  background-color: var(--Light-Blue) !important;
}

.color-electric-blue {
  color: var(--Electric-Blue);
}

.background-electric-blue {
  background-color: var(--Electric-Blue) !important;
}

.color-neon-green {
  color: var(--Neon-Green);
}

.background-neon-green {
  background-color: var(--Neon-Green) !important;
}

.no-border {
  border: none !important;
}


/* -- Flex -- */

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-stretch {
  align-items: stretch;
}

.flex-vertical-center {
  align-items: center;
}

.flex-vertical-bottom {
  align-items: flex-end;
}

.flex-start {
  justify-content: flex-start;
}

.flex-between {
  justify-content: space-between;
}

.flex-end {
  justify-content: flex-end;
}

.flex-1 {
  flex: 1;
}

.full-width {
  width: 100%;
  box-sizing: border-box;
}

.half-width {
  width: 50%;
}

.three-quarters-width {
  width: 75%;
}

.padding-1 {
  padding: 1rem;
}

.padding-1-5 {
  padding: 1.5rem;
}

/* -- General -- */

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: var(--White);
    color: var(--Midnight-Blue);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.5;
  }

  [id] {
    scroll-margin-top: 100px;
  }

  .container {
    max-width: 1366px;
    margin: 0 auto;
    padding-top: 1.5rem;
  }

  .section {
    padding: 2.5rem;
    margin: 2.5rem 0 6rem 0;
  }

  header, footer {
    padding: 2rem 5rem;
    position: relative;
  }

  h1, h2, h3, h4, h5, h6 {
    margin: 0;
  }

  h1, h2, h3 {
    font-family: 'Nectly Poppins Headline', sans-serif;
    line-height: 110%;
    font-weight: 600;
    color: var(--Electric-Blue);
    /*
    background: linear-gradient(108deg, var(--Electric-Blue) 6.3%, var(--Midnight-Blue) 68.53%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    */
  }

  h1, h2 {
    font-size: 4rem;
  }

  h2 {
    text-align: center;
  }

  h2 svg {
    position: absolute;
    z-index: -1;
  }

  h3 {
    font-size: 2rem;
    font-weight: 600;
  }

  h4 {
    font-size: 1.5rem;
    font-weight: 600;
  }

  p {
    font-size: 1rem;
    margin: 0;
    padding: 0;
  }

  i {
    font-family: 'Inter', sans-serif;
  }

  ul {
    padding: 0 1rem;
    margin: 0;
  }

  a {
    color: var(--Electric-Blue);
  }

  .text-center {
    text-align: center;
  }

  .large-paragraph {
    font-size: 1.25rem;
  }

  .medium-paragraph {
    font-size: 1.125rem;
  }

  .small-paragraph {
    font-size: 0.875rem;
  }

  .xsmall-paragraph {
    font-size: 0.75rem;
  }

  th {
    text-align: left;
  }
  tr:nth-child(even) {
    background-color: var(--Light-Blue);
  }


  input[type="radio"], input[type="checkbox"] {
    margin: 0;
    accent-color: var(--Electric-Blue);
  }

  button {
    border: none;
    background: none;
    cursor: pointer;
  }

  .primary-button {
    background-color: var(--Neon-Green);
    color: var(--Midnight-Blue);
    padding: 0.75rem;
    border-radius: 0.875rem;
    font-weight: 600;
  }

  .link-button {
    color: var(--Midnight-Blue);
    font-weight: 600;
    padding: 0.5rem 0
  }

  .link-button::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-left: 0.5rem;
    background-image: url('../images/app/right-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transition: margin-left 0.3s ease;
  }

  .link-button:hover::after {
    margin-left: 0.75rem;
  }

  .blue-primary-button {
    background-color: var(--Electric-Blue);
    color: var(--White);
    padding: 0.75rem 1.5rem;
    border-radius: 0.875rem;
    font-weight: 600;
  }

  .primary-button:disabled {
    background-color: var(--Grey);
    color: var(--White);
  }

  .primary-button:hover {
    background-color: var(--Neon-Green);
    color: var(--Midnight-Blue);
  }

  .primary-button:hover:disabled {
    background-color: var(--Grey);
    color: var(--White);
  }

  .primary-pink-button {
    background-color: var(--Pink);
    color: var(--White);
    padding: 0.75rem 1.5rem;
    border-radius: 0.875rem;
    font-weight: 600;
  }

  .secondary-button {
    color: var(--Electric-Blue);
    padding: 0.75rem 1.5rem;
    border-radius: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--Electric-Blue);
  }

  .secondary-button:hover {
    background-color: var(--Electric-Blue);
    color: var(--White);
  }

  .big-button {
    padding: 1.25rem 2.25rem;
    font-size: 1.25rem;
  }

  /* -- Wavy Underline -- */

  .wavy-underline {
    position: relative;
    display: inline-block;
    color: #002DFF;
    text-decoration: none;
    font-weight: 600;
  }

  .wavy-underline svg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1px;
    width: 75%;
    height: 6px;
    fill: none;
    stroke: var(--Electric-Blue);
    stroke-width: 2;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset .8s ease;
  }

  .wavy-underline:hover svg {
    stroke-dashoffset: 100;
  }

  /* -- Menu -- */

  #menu {
    position: sticky;
    top: 1rem;
    margin-bottom: 6rem;
    width: 100%;
    z-index: 100;
  }

  .menu-container {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    padding: 1rem 5rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 2rem;
  }

  .menu {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .quartergap {
    gap: 0.25rem;
  }

  .halfgap {
    gap: 0.5rem;
  }

  .three-quartergap {
    gap: 0.75rem;
  }

  .gap-1 {
    gap: 1rem;
  }

  .gap-1-5 {
    gap: 1.5rem;
  }

  .gap-2 {
    gap: 2rem;
  }

  .gap-2-5 {
    gap: 2.5rem;
  }

  .menu a {
    text-decoration: none;
    color: var(--Midnight-Blue);
    font-weight: 600;
    border-radius: 0.875rem;
    transition: all 0.3s ease;
    height: fit-content;
  }

  .nectly-logo {
    height: 2.5rem;
  }

  /*
  #nav-connect path {
    transition: all 0.3s ease;
    transition-timing-function: var(--spring-easing);
    transition-duration: var(--spring-duration);
  }

  #nav-connect:hover path {
    d: path("M10.51 16.9512C10.51 16.9512 27.5803 29.9479 55.4024 25.456C72.0046 22.7764 89.0282 17.3266 111.942 17.5984C138.347 17.9091 147.44 26.9512 170.548 26.9512C184.028 26.9512 195.342 23.8314 209.51 19.6502");
  }
*/


  .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .nav-links a svg {
    position: absolute;
    z-index: -1;
  }

  /* -- User Account -- */

  .profile-wrapper {
    position: relative;
  }

  .account-profile {
    color: var(--Midnight-Blue);
    cursor: pointer;
  }

  .account-profile:hover {
    color: var(--Electric-Blue);
  }

  .account-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
  }

  .profile-menu-wrapper {
    position: absolute;
  }

  .profile-menu-wrapper a {
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .profile-menu-wrapper a:hover {
    color: var(--Electric-Blue);
  }

  .profile-menu-wrapper a:hover .profile-menu-icon {
    color: var(--Electric-Blue);
  }

  .profile-menu {
    position: relative;
    top: 0;
    right: 0;
    border-radius: 0.875rem;
    z-index: 100;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 66, 0.10);
    background-color: var(--White);
    padding: 1rem;
    margin: 1rem;
  }


  /* -- Auth Actions -- */

  .auth-actions {
    display: flex;
    padding: .25rem .25rem .25rem .25rem;
    align-items: center;
    gap: 0;
    height: 2rem;
    /*
    border-left: 1px solid var(--Midnight-Blue);
    border: 2px solid var(--Electric-Blue);
    border-radius: 20px;
    */
  }

  .auth-actions a {
    padding: 0.5rem 1rem;
    border-radius: 0.875rem;
    transition: all 0.3s ease;
    color: var(--Electric-Blue);
  }

  .auth-actions a:hover {
    color: var(--Midnight-Blue);

  }

  /*
  #nav-signup {
    background-color: var(--Electric-Blue);
    color: var(--White);
  }

  #nav-signup:hover {
    background-color: var(--Neon-Green);
    color: var(--Midnight-Blue);
  }
  */



/* -- Header -- */

  header {
    border-radius: 2rem 2rem 0rem 0rem;
    background: linear-gradient(180deg, rgba(40, 58, 255, 0.24) 0%, rgba(255, 255, 255, 0.24) 56.61%);
    gap: 2rem;
    padding-top: 2.5rem;
    justify-content: center;
  }

  .hero-content {
    width: 40%;
  }

  .hero-image-container {
    width: 60%;
  }

  #arrow-down {
    position: relative;
    width: 3rem;
    height: 5rem;
    background-color: var(--Electric-Blue);
    border-radius: 100rem;
    z-index: 10;
    display: none;
  }

  #arrow-down svg {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
  }

  .headline-container {
    position: relative;
    margin-bottom: 5rem;
  }

  .headline-container svg   {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }

  /* -- How It Works -- */

  .how-it-works-card {
    padding: 2rem;
    border-radius: 2rem;
    border: 1px solid var(--Midnight-Blue);
    background: var(--Grey);
    box-shadow: 0px 8px 0px 0px var(--Midnight-Blue);
    overflow: hidden;
    position: relative;
    background-color: var(--Grey);
    flex: 1;
  }

  .how-it-works-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 2rem;
    bottom: 2rem;
    width: 1px;
    background-color: var(--White);
  }

  .how-it-works-card:nth-child(2) {
    background: var(--Neon-Green);
  }

  .how-it-works-card:nth-child(3) {
    background: var(--Midnight-Blue);
    color: var(--White);
  }

  .how-it-works-card:nth-child(3) h3 {
    color: var(--Neon-Green);
  }

  .how-it-works-card:nth-child(3) img {
    bottom: -2rem;
  }

  .how-it-works-card h3 {
    margin-bottom: 1rem;
    width: 100%;
  }

  .how-it-works {
    position: relative;
  }

  .how-it-works p {
    width: 60%;
    padding: 0;
    margin: 0;
  }

  .how-it-works img {
    position: absolute;
    bottom: 0;
    right: -2.5rem;
    width: 50%;
  }

  .how-it-works-card:nth-child(1) img {
    position: absolute;
    bottom: 0;
    right: -2.5rem;
    width: 45%;
  }



  /* -- Why Nectly -- */

  #why-nectly {
    position: relative;
  }

  #why-nectly h2 {
    position: absolute;
    background: var(--Neon-Green);
    padding: 1rem;
    border-radius: 1rem;
    top: 0;
    left: 2.5rem;
    font-size: 2.5rem;
  }

  .why-nectly-cards {
    background: var(--Midnight-Blue);
    border-radius: 2rem;
    padding: 2rem;
    flex-wrap: wrap;
  }

  .why-nectly-cards .card {
    padding: 1.5rem;
    flex: 1 1 30%;
    position: relative;
    flex-wrap: wrap;
  }

  .why-nectly-cards .card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1.5rem;
    bottom: 1.5rem;
    right: 0;
    width: 1px;
    background-color: var(--White);
  }

  .why-nectly-cards .card h4 {
    color: var(--Neon-Green);
    width: 100%;
    word-break: break-word;
  }

  .why-nectly-cards .card p {
    color: var(--White);
    width: 100%;
  }




  /* -- Ways to Use Nectly -- */

  .ways-to-use-card {
    border-radius: 2rem;
    background: var(--Grey);
    margin-bottom: 8rem;
  }

  .ways-to-use-card:last-child {
    margin-bottom: 0;
  }

  .ways-to-use-card-content {
    padding: 4rem;
    flex: 1;
  }

  .ways-to-use-card-image {
    flex: 1;
    position: relative;
  }

  .ways-to-use-card .ways-to-use-card-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
  }

  .ways-to-use-card .ways-to-use-card-content ul li {
    color: var(--Midnight-Blue);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
  }

  .ways-to-use-card .ways-to-use-card-content ul li::before {
    content: "•";
    color: var(--Neon-Green);
    position: absolute;
    left: 0;
  }

  .closer-card {
    display: flex;
    padding: 0.5rem;
    align-items: flex-start;
    gap: 0.5rem;
    align-self: stretch;
    background-color: var(--White);
    border-radius: 0.875rem;
  }

  .closer-card p {
    padding: 0.25rem 0 0 0;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 300;
  }

  .closer-icon {
    background-color: var(--Neon-Green);
    border-radius: 8rem;
    width: 2.5rem;
    height: 2.5rem;
    position: relative;
    flex-shrink: 0;
  }

  .closer-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .ways-to-use-card-image img {
    position: absolute;
    bottom: 0;
    height: 85%;
  }

  .ways-to-use-card:nth-child(1) .ways-to-use-card-image img,
  .ways-to-use-card:nth-child(3) .ways-to-use-card-image img {
    transform: translateX(50%);
    right: 50%;
  }

  .ways-to-use-card:nth-child(2) .ways-to-use-card-image img,
  .ways-to-use-card:nth-child(4) .ways-to-use-card-image img {
    transform: translateX(40%);
    right: 30%;
  }

  .info-card {
    padding: 2rem;
    border-radius: 2rem;
    background: #D4D8FF;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 2rem;
  }



  /* -- Footer -- */
  footer {
    background: var(--Midnight-Blue);
    color: white;
    padding: 2rem 5rem;
    border-radius: 2rem 2rem 0rem 0rem;
  }

  .footer-content {
    border-bottom: 1px solid var(--White);
    padding-bottom: 2rem;
  }

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

  #footer-contact {
    gap: 0.5rem;
    text-decoration: none;
    color: var(--White);
  }

  .footer-copyright {
    padding-top: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
  }

  .footer-copyright a {
    margin-left: 2.5rem;
    color: var(--White);
  }

  .hero-headline-container {
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: end;
  }

  .desktop-visible {
    display: block;
  }

  .mobile-visible {
    display: none;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger .line {
    width: 30px;
    height: 3px;
    background-color: var(--Electric-Blue);
    transition: all 0.3s ease;
  }

  .hamburger.active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active .line:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .menu-items-wrapper {
    display: flex;
    gap: 1rem;
    flex-direction: row;
    max-height: 0;
    transition: max-height 0.5s ease;
    justify-content: flex-end;
  }

  .menu-items-wrapper.active {
    max-height: 100vh;
  }

  .menu-items-wrapper .nav-links {
    flex-direction: row;
  }



  /* -- Connect and Earn -- */

  .connect-and-earn-hero .hero-content,
  .connect-and-earn-hero .hero-image-container {
    width: 50%;
  }

  .connect-and-earn-hero .hero-image-container img {
    width: 120%;
  }

  .why-nectly-works-for-professionals .why-nectly-cards {
    flex-wrap: wrap;
    padding-top: 6rem;
  }

  .why-nectly-works-for-professionals .why-nectly-cards .card {
    flex: 1 1 25%;
    max-width: 30%;
  }

  .why-nectly-works-for-professionals .why-nectly-cards .card::after {
    content: none;
  }

  .why-nectly-works-for-professionals .why-nectly-cards .card:nth-last-child(-n+3) {
    border-top: 1px solid var(--White);
  }

  .why-nectly-works-for-professionals .why-nectly-cards .card:not(:last-child)::after {
    top: 0;
    bottom: 0;
  }

  .why-nectly-works-for-professionals .why-nectly-cards .card:nth-child(1),
  .why-nectly-works-for-professionals .why-nectly-cards .card:nth-child(2),
  .why-nectly-works-for-professionals .why-nectly-cards .card:nth-child(4),
  .why-nectly-works-for-professionals .why-nectly-cards .card:nth-child(5) {
    border-right: 1px solid var(--White);
  }

  .profiles-cards-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .profiles-card {
    border-radius: 2rem;
    background: var(--Grey);
    max-width: calc(33.33% - 0.67rem);
  }

  .profiles-card .ways-to-use-card-content {
    padding: 2rem;
  }

  .profiles-card .ways-to-use-card-content img {
    position: relative;
    max-width: 100%;
    height: 200px;
    left: 50%;
    transform: translateX(-50%);
  }

  .profiles-card .ways-to-use-card-content h4 {
    color: var(--Electric-Blue);
  }




  /* -- Connect for Opportunities -- */

  .connect-for-opportunities .how-it-works-card:nth-child(1) img {
    bottom: -2rem;
  }



  /* -- Early Access -- */

  #early-access {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 80;
  }

  .menu-toggle {
    padding: 1rem;
    cursor: pointer;
  }

  .menu-toggle h4 {
    color: var(--Electric-Blue);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    padding: 0;
  }

  .menu-toggle .early-access-toggle-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .early-access-menu {
    background: #FFBCE2;
    border: 1px solid #ddd;
    border-radius: 1.5rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    padding: 0;
    width: fit-content;
  }

  .early-access-toggle-container {
    display: flex;
    flex-direction: column;
  }

  #earlyAccessToggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .early-access-toggle-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .early-access-content {
    position: relative;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    width: 200px;
  }

  .early-access-content h4 {
    margin: 0;
    padding: 0;
    font-size: 2rem;
    font-weight: 600;
    color: var(--Electric-Blue);
    line-height: 1.2;
  }

  .early-access-content p {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-weight: 400;
    color: var(--Midnight-Blue);
  }

  .early-access-content h5 {
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--Electric-Blue);
  }


  .close-early-access-toggle {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
  }

  .early-access-toggle-container.open .close-early-access-toggle {
    display: block;
  }

  .early-access-toggle-container.open .early-access-content {
    max-height: fit-content;
    width: 320px;
    padding: 2.5rem;
    opacity: 1;
  }

  .early-access-toggle-container.open #earlyAccessToggle {
    opacity: 0;
    pointer-events: none;
    display: none;
  }

  .early-access-custom-select {
    width: 100%;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 28px;
    border: 1px solid #ccc;
    appearance: none; /* removes default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    border-radius: 0.875rem;
    color: var(--Electric-Blue);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
  }

  .primary-button-blue {
    background-color: var(--Electric-Blue);
    color: var(--White);
  }


  /* -- Terms of Service -- */

.content-window {
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
  padding: 2.5rem;
  border-radius: 1rem 1rem 0 0;
}

.side-sticky-image {
  position: sticky;
  top: 120px;
  align-self: start;
  width: 50%;
  height: auto;
}



/* -- FAQ -- */

.faq {
  width: 100%;
  border-bottom: 1px solid var(--Electric-Blue);
}

.faq-toggle {
  all: unset;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
  padding: 1rem 0;
}

.faq-toggle:hover .faq-question {
  color: var(--Midnight-Blue);
}

.faq-question {
  color: var(--Electric-Blue);
}

.faq-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  padding-top: 0.5rem;
  margin-bottom: 1rem;
}

.faq-content.open {
  max-height: 1000px; /* musí byť veľké číslo, podľa reálneho obsahu */
  opacity: 1;
}

.faq-icon {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E9EBFF;
  flex-shrink: 0;
  font-size: 0;
  transition: all 0.3s ease-in-out;
  display: flex;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: var(--Electric-Blue);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.faq-icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-toggle[aria-expanded="true"] .faq-icon {
  transform: rotate(90deg);
  background: #FFEEF8;
}

.faq-toggle[aria-expanded="true"] .faq-icon::before,
.faq-toggle[aria-expanded="true"] .faq-icon::after {
  background: var(--Pink);
}

.faq-toggle[aria-expanded="true"] .faq-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}



/* -- Privacy Policy -- */

.numbered-list {
  list-style-type: decimal;
  padding-left: 1rem;
}




/* -- Responsive -- */

@media (min-width: 1366px) {
  .why-nectly-cards .card {
    flex: 1 1 20%;
  }

}

@media (max-width: 1366px) {
  .why-nectly-cards .card:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 1024px) {

  .profile-menu-wrapper {
    position: relative;
    height: auto !important;
    opacity: 1 !important;
  }

  .profile-menu {
    padding: 0;
    margin: 1rem 0 0 3rem;
    width: 100%;
    background: transparent;
    box-shadow: none;
  }

  h3 {
    font-size: 1.5rem;
  }

  .mobile-flex-column-reverse {
    flex-direction: column-reverse;
  }

  .tablet-flex-column {
    flex-direction: column;
  }

  .connect-for-opportunities .how-it-works-card:nth-child(1) img {
    bottom: unset;
    width: 60%;
  }

  .desktop-visible {
    display: none;
  }

  .mobile-visible {
    display: block;
  }

  .hero-image-container {
    display: none;
  }

  .hero-content,
  .connect-and-earn-hero .hero-content {
    width: 100%;
  }

  .hero-headline-container img {
    width: 50%;
    transform: scale(1.2) translate(10%, -10%);
  }

  .how-it-works-card:nth-child(1) img {
    position: relative;
    bottom: unset;
    right: unset;
    width: unset;
  }

  .how-it-works p {
    width: 100%;
  }

  .how-it-works-card {
    justify-content: start;
  }

  .how-it-works-card img {
    height: 200px;
    margin-bottom: 1rem;
  }

  .why-nectly-cards .card {
    flex: 1 1 calc(40% - 16px);
  }

  .ways-to-use-card {
    flex-wrap: wrap-reverse;
    margin-bottom: 0;
    flex: 1 1 40%;
  }

  .ways-to-use-card-content {
    flex: unset;
  }

  .ways-to-use-card-image img {
    width: 100%;
    position: relative;
    bottom: unset;
    right: unset;
  }

  .ways-to-use-cards-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .ways-to-use-card-content {
    padding: 2rem;
  }

  .ways-to-use-cards-container .gap-2 {
    gap: 0;
  }

  .ways-to-use-card:nth-child(4) .ways-to-use-card-image img {
    transform: unset;
    left: 0;
    bottom: -15px;
    width: 100%;
  }

  .ways-to-use-card:last-child .ways-to-use-card-image {
    border-radius: 0 0 2rem 2rem;
    overflow: hidden;
  }

  .hamburger {
    display: flex;
  }

  .menu-items,
  .menu-items .nav-links,
  .menu-items .auth-actions {
    flex-direction: column;
  }

  .menu-items-wrapper {
    flex: 0 0 100%;
    overflow: hidden;
  }

  .menu-items {
    width: 100%;
    padding-top: 2rem;
  }

  .profiles-card {
    max-width: calc(50% - 0.5rem);
  }

  .side-sticky-image {
    position: relative;
    top: unset;
    right: unset;
    width: 80%;
    height: auto;
    margin: 0 auto;
  }

}

@media (max-width: 768px) {

  .mobile-flex-column {
    flex-direction: column;
  }

  .three-quarters-width {
    width: 100%;
  }

  h1, h2 {
    font-size: 2.5rem;
  }

  header, footer {
    padding: 1.5rem;
    overflow-x: hidden;
  }

  .menu-container {
    padding: 1rem 1.5rem;
    border-radius: 1rem;
  }

  .section {
    padding: 1.5rem;
    margin: 2.5rem 0 3rem 0;
  }

  .headline-container {
    margin-bottom: 3rem;
    overflow-x: clip;
  }

  .headline-container svg {
    transform: translate(-50%, -50%) scale(0.8);
  }

  .hero-headline-container {
    flex-wrap: wrap;
    gap: 2rem;
  }

  #arrow-down {
    display: block;
  }

  .hero-headline-container img {
    width: 100%;
    transform: none;
  }

  #how-it-works div {
    flex-direction: column;
  }

  .how-it-works-card img {
    width: 60%;
    height: auto;
  }

  .why-nectly-cards {
    padding: 4rem 0 0 0;
    gap: 0;
  }

  #why-nectly h2 {
    font-size: 2rem;
  }

  .why-nectly-cards .card::after {
    display: none;
  }

  .why-nectly-cards .card {
    padding: 0.5rem 1rem;
  }

  .ways-to-use-card:nth-child(2),
  .ways-to-use-card:nth-child(4) {
    flex-direction: column;
  }

  .ways-to-use-card-image {
    flex: 1;
    position: relative;
    padding: 2rem 1rem 0 1rem;
    border-radius: 0;
  }

  .ways-to-use-card .ways-to-use-card-image img {
    width: 100% !important;
    position: relative !important;
    transform: none !important;
    top: unset !important;
    bottom: unset !important;
    left: unset !important;
    right: unset !important;
    margin: 0 !important;
    padding: 0;
  }

  .ways-to-use-card-content {
    padding: 2rem 1rem;
  }

  .footer-content {
    flex-direction: column;
    justify-content: center;
    padding-bottom: 1rem;
    gap: 0.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-copyright {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-top: 1rem;
  }

  .footer-copyright a {
    margin-left: 0;
  }

  .why-nectly-works-for-professionals .why-nectly-cards .card {
    flex: 0 0 calc(50% - 2.075rem);
    max-width: 50%;
  }

  .why-nectly-works-for-professionals .why-nectly-cards .card:nth-child(2),
  .why-nectly-works-for-professionals .why-nectly-cards .card:nth-child(4),
  .why-nectly-works-for-professionals .why-nectly-cards .card:nth-child(6) {
    border: none;
  }

  .why-nectly-works-for-professionals .why-nectly-cards .card:nth-child(1),
  .why-nectly-works-for-professionals .why-nectly-cards .card:nth-child(3),
  .why-nectly-works-for-professionals .why-nectly-cards .card:nth-child(5) {
    border-right: 1px solid var(--White);
  }

  .why-nectly-works-for-professionals .why-nectly-cards .card:nth-child(n+3) {
    border-top: 1px solid var(--White);
  }

  .why-nectly-works-for-professionals h2 {
    width: calc(100% - 5rem);
    box-sizing: border-box;
    top: -3rem !important;
  }

  .profiles-card {
    max-width: 100%;
  }

  .side-sticky-image {
    width: 100%;
  }

  .early-access-toggle-container.open .early-access-content {
    width: calc(100vw - 9rem);
  }

  .early-access-content .refer-card-form {
    flex-direction: column;
  }

}







#nav-connect-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 320px;
  height: 80px;
  z-index: -1;
  pointer-events: none;
}