.assessment-result {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 140px 20px 45px 20px;

  .ad-preview {
    width: 400px;
  }

  .ad-score {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;

    h1, h2, h3{
      margin: 0 0 10px 0;
    }

    .scores {
      display: flex;
      justify-content: center;
      gap: 40px;
    }
  }

  .ad-recomendations {
    flex: 1;
    padding: 20px;

    ul {
      text-align: left;
      list-style: none;
      li {
        background-color: #fff;
        padding: 10px 20px;
        margin-bottom: 10px;
        border-radius: 12px;
        line-height: 1.5;
        color: #666;
        box-shadow: rgba(60, 64, 67, 0.15) 0px 1px 2px 0px, rgba(60, 64, 67, 0.1) 0px 1px 3px 1px;
        font-size: 14px;
      }
    }
  }

  .ad-block {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
    border-radius: 16px;
    overflow: hidden;

    .heading {
      background-color: #fff;
      padding: 10px 20px;
    }
    .social-provider {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #f5f5f5;
      &.facebook {
        background: #3b5998;
      }
      &.instagram {
        background: #E94259;
      }
      &.linkedin {
        background: #007EBB;
      }
      &.twitter {
        background: #3E3E3E;
      }
    }
    img {
      display: block;
      max-width: 100%;
    }
  }
}

.radial-progress {
  --thickness: 8px;
  border-color: #EEF0FA;
  background: radial-gradient(circle, transparent 0, transparent 61%, rgba(150, 165, 234, .5) 54%, rgba(150, 165, 234, .5) 100%);
}

.signup-block {
  background-image: url(/assets/upload-bg-720ad0be96ccc849745765615d864db7a7c0be771bfd76c4b5bfdbac34828e9c.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
}
.button {
  background-color: #5670F1;
  color: #fff;
  padding: 10px 20px;
  border-radius: 16px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
  display: inline-block;
  transition: background-color 0.2s;

  &.pale {
    background: #fefefe;
    color: #333;
  }

  &.ghost {
    background: transparent;
    border: 1px solid #000;
    color: #000;
  }


  &:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  &:hover:not(.pale):not(.ghost):not(:disabled) {
    background-color: #3B57E6;
  }

  &:disabled {
    background-color: rgb(86, 112, 241, 0.5);

    &:hover {
      background-color: rgb(86, 112, 241, 0.5);
      cursor: default;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
  }

  &.large {
    padding: 16px 30px;
    font-size: 18px;
  }
}
.upload-section {

  border: 1px solid #ECEDEF;
  &:hover {
    border-color: #5670F1;
    cursor: pointer;
  }
  &.highlight {
    border-color: #5670F1;
  }
  &.active {
    border-color: #5670F1;
    box-shadow: 0 0 8px 0px rgba(86, 112, 241, 0.13), 0 0 56px 0px rgba(86, 112, 241, 0.28);
  }
}

.wizard .dropzone {
  margin: 0 auto;
}
.formats {
  display: flex;
  justify-content: center;
  gap: 40px;

  .format {
    flex: 1;
    cursor: pointer;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(22, 22, 22, 0.2);
    transition: all 0.2s ease-in-out;

    img {
      max-width: 100%;
      max-height: 200px;
      display: block;
      margin: 0 auto 20px auto;
    }

    input[type="radio"] {
      opacity: 0;
      position: absolute;
    }

    &.discarded {
      opacity: 0.4;
    }

    &:hover {
      box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    }
  }
}
.format-selector .format {
  height: 246px;
}
.hero {
  height: 100%;
  background: url(/assets/ads-left@2x-150718bd2c3d6a2d480243e1d7b3f569782234aa22538e12ccda94a65800d719.png), url(/assets/ads-right@2x-41b402b3f85c325555d8cdd19de74db921edd155d2c37353c33fc3aa46dbe5fd.png);
  background-repeat: no-repeat;
  background-position: 40px 80px, 95% 80px;
  background-size: 25%;

  .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    box-sizing: border-box;
    padding-top: 50px;
    align-items: center;
    text-align: center;
  }

  h1 {
    font-size: 52px;
  }

  h1, h3 {
    margin-top: 0;
  }
}
html {
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  line-height: 1.5;
  height: 100%;
}

html,
body {
  overflow-x: hidden;
  /* Prevent horizontal scroll */
}

@media only screen and (max-width: 1200px) {
  html {
    font-size: 14px;
  }
}

@media only screen and (max-width: 700px) {
  html {
    font-size: 12px;
    overflow-x: hidden;
  }
}

* {
  border: 0;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #007aff;
  --light-blue: #ebf3fe;
}

body {
  position: relative;
}

.main-container {
  position: relative;
}

/* NAV */
nav {
  position: relative;
  z-index: 1;
  height: 3.5rem;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.8);
}

@media only screen and (max-width: 450px) {
  nav {
    height: 5rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  #logo {
    max-height: 4rem;
    margin: 0 2rem 1rem;
  }
}

div.buttons {
  display: flex;
  align-items: center;
}

a.nav-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  margin: 0 0.5rem;
  padding: 0rem 2rem;
  border: 1px solid var(--blue);
  border-radius: 2rem;
  text-decoration: none;
  text-wrap: nowrap;
  box-sizing: border-box;
}

a#logIn {
  color: var(--blue);
}

a#startForFree {
  color: white;
  background-color: var(--blue);
}

a#startForFree:hover {
  color: var(--blue);
  background-color: white;
}

a#logIn:hover {
  color: white;
  background-color: var(--blue);
}

/* MAIN */
main {
  position: relative;
  z-index: 1;
  text-align: center;
  overflow: hidden;
}

.main-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  text-align: center;
  padding-top: 112px;
  background: url(/assets/hero-bg-25f820818590b4dd3efe781a920b877142020d3216defc5cc9af2c5a10c7cc93.svg);
  background-repeat: no-repeat;
  background-position: center 0px;
  background-size: initial;
  min-height: 1092px;
}

.badge {
  color: #5670F1;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  height: 26px;
  padding: 0 12px;
  background-color: rgba(86, 112, 241, 0.12);
  border-radius: 40px;
}


h1.title {
  margin: 3rem auto 2rem;
  line-height: 1.2;
  font-size: 60px;
  font-weight: 600;
  max-width: 90%;
}

@media only screen and (max-width: 450px) {
  h1.title {
    font-size: 2rem;
    margin: 3rem auto;
  }
}

p.description {
  font-size: 18px;
}

/* UPLOAD SECTION */
div.upload-section {
  max-width: 636px;
  width: 100%;
  background-color: #fff;
  background-image: url(/assets/upload-bg-720ad0be96ccc849745765615d864db7a7c0be771bfd76c4b5bfdbac34828e9c.png);
  background-repeat: no-repeat;
  background-position: bottom;
  border: 1px solid #ECEDEF;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1rem;
  margin: 0 auto;
  border-radius: 1.5rem;
}

@media only screen and (max-width: 800px) {
  div.upload-section {
    width: 80%;
    padding: 2rem 1rem;
  }
}

div.inputFileButtonDiv {
  width: 70%;
  height: 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

@media only screen and (max-width: 1200px) {
  div.inputFileButtonDiv {
    width: 80%;
  }
}

@media only screen and (max-width: 450px) {
  div.inputFileButtonDiv {
    width: 99%;
    gap: 0.5rem;
  }
}

label.custom-file-upload {
  width: 70%;
  height: 100%;
  border: 1px dotted #888;
  border-radius: 1rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  background-color: white;
  cursor: pointer;
  overflow: hidden;
}

label.custom-file-upload span.ufs.material-symbols-outlined {
  margin-right: 1rem;
  color: grey;
  font-variation-settings: "FILL" 1;
}

@media only screen and (max-width: 400px) {
  label.custom-file-upload span.ufs.material-symbols-outlined {
    margin-right: 0.3rem;
  }
}

button.custom-file-upload {
  height: 100%;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 1rem;
  margin-left: 1px;
  cursor: pointer;
  font-size: 1.1rem;
}

button.custom-file-upload span.anal.material-symbols-outlined {
  font-size: 1.5rem;
  font-variation-settings: "FILL" 0, "wght" 300;
  margin-right: 0.5rem;
}

p.inputType {
  display: block;
  width: 90%;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: grey;
}


.text-gradient {
  background: linear-gradient(45deg, #69A2FD, #7674FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* FOOTER */
footer p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: grey;
}

footer p span#lock {
  color: green;
  margin-right: 1rem;
}

/* GRADIENT SECTION */
div#lopLeftGradient {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    rgba(59, 133, 251, 0.35) 0%,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 2 !important;
  width: 50%;
  aspect-ratio: 1/1;
  pointer-events: none;
}

div#midRightGradient {
  position: absolute;
  transform: translate(150%, 20%);
  background: radial-gradient(
    rgba(59, 133, 251, 0.35) 0%,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 0;
  width: 50%;
  aspect-ratio: 1/1;
  pointer-events: none;
  overflow: hidden;
}

div#bottomLeftGradient {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-50%, 50%);
  background: radial-gradient(
    rgba(59, 133, 251, 0.35) 0%,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 0;
  width: 50%;
  aspect-ratio: 1 / 1;
  pointer-events: none;
}

@media only screen and (max-width: 1024px) {
  h1.title,
  h1.finish {
    font-size: 42px;
  }
  div.upload-section {
    width: 80%;
  }
}

@media only screen and (max-width: 840px) {
  section.cardsAndText {
    padding: 5rem 0;
    .container.flex {
      flex-direction: column;
      .leftText,
      .rightCards {
        width: 100%;
      }
      .leftText {
        margin-bottom: 40px;
      }
    }
  }
  p.inBetweenP {
    width: 80%;
  }
  h1#identify {
    text-align: center;
  }
  section.finish {
    margin: 8rem auto;
  }
}

@media only screen and (max-width: 620px) {
  .header {
    .logo img {
      width: 200px;
    }

    .actions .button {
      display: none;
    }
    .drawer {
      display: grid !important;
    }
  }
  h1.title {
    font-size: 36px;
  }

  div.upload-section {
    width: 90%;
  }

  div.inputFileButtonDiv {
    width: 100%;
    flex-direction: column;
    height: auto;
  }
  label.custom-file-upload {
    min-height: 3rem;
  }
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"] {
  position: relative;
  cursor: text;
  font-size: 14px;
  line-height: 20px;
  padding: 0 16px;
  height: 42px;
  background-color: #fff;
  border: 1px solid #d6d6e7;
  border-radius: 12px;
  color: rgb(35, 38, 59);
  overflow: hidden;
  width: 100%;
  transition: all 100ms ease-in-out;

  :focus {
    border-color: #c7d1e7;
    box-shadow: 0 1px 0 0 rgb(35, 38, 59 / 5%);
  }
}
html, body, button, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  height: 100%;
  font-family: "Outfit", sans-serif;
  font-size: 100%;
  background-color: #F9FAFB;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
}

.content {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  min-width: 360px;
  background-repeat: no-repeat;
  background-size: cover;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1440px;
  padding: 0 20px;
  left: 50%;
  transform: translateX(-50%);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  border: 1px solid #ECEDEF;
  background: rgba(244, 245, 246, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 48px;
  padding: 18px 32px;
}

.header .actions {
  display: flex;
  gap: 20px;
}

.header .drawer {
  display: none;
}

.content .container {
  flex: 1;
}

h1 {
  font-size: 36px;
  font-weight: 500;
}

h2 {
  font-weight: 400;
  font-size: 42px;
  margin-top: 0;
  line-height: 1.6;
}

h3 {
  font-weight: 400;
  color: rgba(0,0,0,.6);
  line-height: 1.6;
}

a {
  color: #5670F1;
}

small {
  font-size: 14px;
}

.large {
  font-size: 20px;
  line-height: 1.6;
}

.muted {
  color: #666;
}
.pricing-switcher {
  display: flex;
  align-items: center;
  border: 1px solid #ECEDEF;
  background-color: #fff;
  border-radius: 24px;
  padding: 12px 20px;
  margin-bottom: 20px;

}

.pricing-page {
  background-image: url(/assets/main-bg-78700021a1940419693611ace527194d4147a82c1675526567a73013b66a21f8.svg);
  background-repeat: no-repeat;
  background-position: center 0px;
  background-size: initial;
  min-height: 1092px;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
  padding-top: 112px;
}

.pricing-plans {
  border: 1px solid #ECEDEF;
  background-color: #fff;
  border-radius: 16px;
  display: flex;
  width: 90%;
  text-align: left;
  max-width: 1400px;
}

.pricing-plan {
  border-right: 1px solid #ECEDEF;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 40px;
  line-height: 1.5;
  min-height: 350px;
  &:last-child {
    border-right: 0;
  }
  &.distinguised {
    border: 1px solid #5670F1;
    margin-top: -20px;
    margin-bottom: -20px;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: rgba(71, 98, 231, 0.35) 0px 5px 15px;
  }
  &.custom {
    background: linear-gradient(135deg, #FAFAFA, #E4E8F0);
    border-radius: 0 16px 16px 0;
  }
}

.pricing-plan .hide {
  display: none;
}

.pricing-plan .amount {
  font-size: 1.5rem;
  font-weight: 800;
  margin-right: 4px;
}

.pricing-plan h3 {
  margin-bottom: 4px;
  margin-top: 0;
}

.pricing-plan ul {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
}

.pricing-plan ul li {
  margin-bottom: 8px;
  background: url(/assets/check-c04b89c6c0e9f427f7fd810d0c45dfd29b9a6a4b5a8d5d3bc572b9bb713f1d15.svg);
  background-repeat: no-repeat;
  background-position: 0 4px;
  padding-left: 26px;
}


@media (max-width: 1200px) {
  .pricing-plan {
    padding: 20px;
  }
}

@media (max-width: 1024px) {
  .pricing-plans {
    flex-direction: column;
  }
  .pricing-plan {
    padding: 40px 20px;
    &.distinguised {
      margin: 20px 0;
      padding-bottom: 40px;
    }
  }
}
.signin {
  .media {
    background-image: linear-gradient(135deg, #6FAAFF, #7674FF);
  }
}

.signin, .signin-modal {
  .button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 0;
    font-weight: bold;
    background: transparent;
    border: 1px solid rgba(22, 22, 22, .2);
    color: rgba(22, 22, 22, 1);
    border-radius: 16px;

    &:hover:not(.pale):not(.ghost):not(:disabled) {
      background-color: transparent;
    }

    .icon {
      width: 28px;
      height: 28px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 8px;
    }
  }

  .button.google {
    border: 1px solid #db4437;
    color: #db4437;
  }

  .button.facebook {
    border: 1px solid #1877f3;
    color: #1877f3;
  }
}
.testimonial-section {
  overflow: visible;
  height: 14rem;
}

.testimonial-track {
  display: flex;
  width: max-content;
  animation: testimonial-scroll 40s linear infinite;
}

.testimonial-section:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 18rem;
  flex-shrink: 0;
  box-sizing: border-box;
}

@keyframes testimonial-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.wizard {
  max-width: 860px;
  width: 100%;
  height: 100%;

  margin: 0 auto;
  padding: 140px 20px 40px 20px;
  text-align: center;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;

  input {
    max-width: 500px;
  }
  h1 {
    font-size: 2.625rem;
    font-weight: 700;
    line-height: 1.4;
  }
}
.spinner {
  width: 24px;
  height: 24px;
  border: 3px dotted rgb(193, 193, 193);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 2s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.wizard-steps {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  counter-reset: step;
}

.wizard-steps .wizard-step {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wizard-steps .wizard-step::before {
  counter-increment: step;
  content: counter(step);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.wizard-steps .wizard-step:not(:last-child)::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #e0e0e0;
  margin-left: 4px;
}

.wizard-steps .wizard-step.current {
  color: #5670f1;
}

.wizard-steps .wizard-step.current::before {
  background-color: #5670f1;
  color: #fff;
}

.wizard-steps .wizard-step.completed {
  color: #5670f1;
}

.wizard-steps .wizard-step.completed::before {
  counter-increment: step;
  content: "✓";
  /* Unicode checkmark */
  background-color: #5670f1;
  color: #fff;
}
.providers {
  display: flex;
  gap: 16px;
}

.provider {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 40px 20px;
  border-radius: 16px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border: 1px solid rgba(22, 22, 22, 0.2);
  transition: all 0.2s ease-in-out;

  &:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  }

  &.active {
    border: 1px solid #5670F1;
  }


  input[type='radio'] {
    opacity: 0;
    height: 0;
    width: 0;
    cursor: pointer;
  }

  .provider-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 25%;
  }

  &.facebook {
    .provider-icon {
      background-color: #3b5998;
    }
  }

  &.instagram {
    .provider-icon {
      background-color: #E94259;
    }
  }

  &.linkedin {
    .provider-icon {
      background-color: #007EBB;
    }
  }

  &.twitter {
    .provider-icon {
      background-color: #3E3E3E;
    }
  }

  &.discarded {
    opacity: 0.5;
    .provider-icon {
      background-color: #5a5a5a;
    }
  }
}
.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.social-icon.facebook {
  background: #3b5998;
}

.social-icon.linkedin {
  background: #0077b5;
}

.social-icon.instagram {
  background: #e1306c;
}

.social-icon.twitter {
  background: #000000;
}
.toggle {
  cursor: pointer;
  display: inline-block;
  border: none;
}

.toggle-switch {
  display: inline-block;
  background: #ccc;
  border-radius: 16px;
  width: 44px;
  height: 24px;
  position: relative;
  vertical-align: middle;
  transition: background 0.25s;
}

.toggle-switch:before,
.toggle-switch:after {
  content: "";
}

.toggle-switch:before {
  display: block;
  background: linear-gradient(to bottom, #fff 0%, #eee 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2px;
  left: 3px;
  transition: left 0.25s;
}

.toggle:hover .toggle-switch:before {
  background: linear-gradient(to bottom, #fff 0%, #fff 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}

.toggle-checkbox:checked+.toggle-switch {
  background: linear-gradient(to right, #69A2FD 0%, #7674FF 100%);
}

.toggle-checkbox:checked+.toggle-switch:before {
  left: 22px;
}

.toggle-checkbox {
  position: absolute;
  visibility: hidden;
}

.toggle-label {
  margin-left: 5px;
  position: relative;
  top: 2px;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *







 */
