:root {
  --primary: #3aa5dc;
  --dark-dimmed: #bfe4f8;
  --dimmed: #e9f5fb;
  --light-dimmed: #f8fcfe;
  --white: #ffffff;
  --black: #000000;
  --gray: #767b7e;
  --success: #dbeff7;
  --bg-inform: #dbe1f7;
  --inform: #3a83dc;
  --bg-warning: #fff5c7;
  --warning: #b1640c;
  --bg-error: #f1cdcd;
  --error: #bb0606;
  --border-radius: 10px;
}

@font-face {
  font-family: "Century Gothic";
  src: url("./landing-assets/century-gothic.ttf") format("true-type");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Century Gothic";
  src: url("./landing-assets/century-gothic_bold.ttf") format("true-type");
  font-weight: bold;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--white);
  font-family: "Century Gothic", sans-serif;
}

body,
input,
textarea,
select,
button {
  font-family: "Century Gothic", sans-serif;
}

figure,
p {
  margin: 0;
}

header {
  background-color: #fff;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.05));
  position: sticky;
  top: 0px;
  width: 100%;
}

header div a {
  text-transform: uppercase;
  color: var(--primary);
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.btn {
  background-color: var(--primary);
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  display: block;
  width: fit-content;
  border-radius: var(--border-radius);
  transition: all 0.2s ease-in-out;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  box-sizing: border-box;
}

.secondary-btn {
  color: var(--primary);
  box-shadow: inset 0 0 0 2px var(--primary);
  text-decoration: none;
  padding: 10px 20px;
  display: block;
  width: fit-content;
  border-radius: var(--border-radius);
  transition: all 0.2s ease-in-out;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  box-sizing: border-box;
}

.btn:hover,
header div a:hover,
.secondary-btn:hover,
#close-button:hover {
  filter: brightness(0.75);
}

.accordion {
  background: var(--dimmed);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
}
.accordion .main {
  background-color: var(--dimmed);
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 10px;
  transition: all 0.3s ease;
}
.accordion .ai {
  background: #6b5ce7;
  font-weight: bold;
  height: fit-content;
  padding: 7px;
  color: var(--white);
  border-radius: var(--border-radius);
}
.accordion p {
  font-size: 11px;
}
.progress {
  width: 100%;
  height: 10px;
  background: var(--dimmed);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0;
  background: var(--primary);
  border-radius: inherit;
  transition: width 0.3s ease;
}

.badge {
  text-transform: uppercase;
  color: var(--primary);
  font-size: 12px;
  background-color: var(--dark-dimmed);
  padding: 2px 4px;
  font-weight: bold;
  border-radius: 3px;
}

.text-primary {
  color: var(--primary);
}
.container {
  margin: auto;
  max-width: 1180px;
}

table {
  box-sizing: border-box;
  border-spacing: 0;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  overflow: hidden;
  border-bottom: 1px solid var(--primary);
}
table thead {
  background-color: var(--dark-dimmed);
  border: 0;
  text-transform: uppercase;
  font-size: 14px;
}
table thead th {
  padding: 10px 8px;
}
table thead tr > :first-child {
  padding-left: 20px;
  text-align: left;
}
table thead tr > :last-child {
  padding-right: 20px;
}
table tbody tr > :first-child {
  padding-left: 20px;
  text-align: left;
}
table tbody tr > :last-child {
  padding-right: 20px;
}
table tbody {
  font-size: 14px;
}
table tbody td {
  padding: 10px 12px;
}

.accordion {
  cursor: pointer;
}
.accordion:hover {
  filter: brightness(0.9);
}
.accordion.expand {
  max-height: 200px !important;
}
.accordion.expand .arrow {
  transform: rotate(180deg) !important;
}

input.text-input,
textarea {
  padding: 10px;
  border-radius: var(--border-radius);
  border: 1px solid var(--primary);
  font-size: 14px;
}

select {
  padding: 7px 30px 7px 10px;
  border-radius: var(--border-radius);
  border: 1px solid var(--primary);
  font-size: 14px;
  background-image: url("./landing-assets/down-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 6px center;
  appearance: none;
  background-size: 18px 18px;
}

.hero {
  scroll-margin-top: 100px;
  height: 80vh;
  background: linear-gradient(135deg, rgba(225, 244, 255, 1) 30%, rgba(58, 165, 220, 0.4)), #fff;
  box-shadow: inset 0px 0px 44px 0px rgba(58, 165, 220, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero .container {
  margin: auto;
  max-width: 1180px;
  display: flex;
  padding: 0 20px;
  gap: 50px;
}
.md-w-50 {
  width: 50%;
}
.md-w-70 {
  width: 70%;
}
.md-w-30 {
  width: 30%;
}

.how-it-works {
  background: var(--light-dimmed);
  padding: 60px 0;
  border: 1px solid #c6e5f5;
  scroll-margin-top: 120px;
}
.how-it-works .badge {
  display: block;
  width: fit-content;
  margin: auto;
}

.how-it-works .container {
  display: flex;
  gap: 12px;
}
.nav {
  width: 100%;
  display: flex;
  gap: 32px;
  justify-content: center;
}
.visbile {
  display: none;
}

#side-button,
#close-button {
  background: var(--dimmed);
  padding: 4px 6px;
  border-radius: 6px;
  padding-bottom: 2px;
  width: fit-content;
  transition: all ease-in 150ms;
  cursor: pointer;
}

#side-menu {
  transition: all ease-in 150ms;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  overflow: hidden;
  opacity: 0;
  width: 100%;
  max-width: 0px;
  z-index: 50;
}

#side-menu.active {
  display: block;
  opacity: 1;
  max-width: 100vw;
}

#side-menu .bg {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all ease-in 250ms;
  backdrop-filter: blur(10px);
}

#side-menu .side-menu-container {
  background: #ffffff;
  transition: all ease-in 150ms;
  height: 100vh;
  width: 80vw;
  margin-left: auto;
  padding-top: 40px;
  display: block;
  translate: 100px;
  overflow-y: auto;
}

.side-menu-container a {
  text-transform: uppercase;
  font-weight: bold;
}
.overflow-hidden {
  overflow: hidden;
}
#side-menu.active .side-menu-container {
  translate: 0 0px;
}
#side-menu.active .bg {
  opacity: 1;
}

.tech {
  background-color: var(--dark-dimmed);
  border-radius: 20px;
  display: flex;
  gap: 4px;
  height: fit-content;
  align-items: center;
  padding: 3px 10px 3px 3px;
  font-size: 14px;
  font-weight: bold;
}

.step-item {
  background: var(--dimmed);
  border-radius: var(--border-radius);
  padding: 16px 14px;
  border: 1px solid #c6e5f5;
  width: 100%;
  box-sizing: border-box;
}

h1 {
  font-size: 32px;
}

.testimonials-2 {
  display: none !important;
}

.buttons-container {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.problem {
  background: var(--light-dimmed);
  padding: 60px 0;
  border: 1px solid #c6e5f5;
}

.problem p.quote {
  font-weight: bold;
  background: var(--dimmed);
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  font-size: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 18px;
}

.problem .container {
  display: flex;
  gap: 80px;
}

.solution .badge {
  display: block;
  width: fit-content;
  margin: auto;
}
.solution h2 {
  text-align: center;
  margin-top: 10px;
  color: var(--primary);
}

.check-item-container {
  max-width: 920px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.check-item {
  background: var(--dimmed);
  padding: 10px;
  border-radius: var(--border-radius);
  display: flex;
  gap: 12px;
}
.check-item p {
  font-size: 15px;
  width: 100%;
}

.you-get {
  background: var(--light-dimmed);
  padding: 60px 0;
  border: 1px solid #c6e5f5;
  scroll-margin-top: 120px;
}
.you-get .badge {
  width: fit-content;
  margin: auto;
  display: block;
}
.you-get h2 {
  text-align: center;
  margin-top: 10px;
  color: var(--primary);
}
.you-get .item-container {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.you-get .item {
  background: var(--dimmed);
  border-radius: var(--border-radius);
  padding: 16px 14px;
  border: 1px solid #c6e5f5;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
}
.you-get .item h3 {
  margin: 0;
}

.benefits.container {
  scroll-margin-top: 120px;
  padding: 60px 0;
}

.benefits-item {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.benefits-item .data-item {
  box-sizing: border-box;
}

.agency {
  padding: 60px 0;
  border: 1px solid #c6e5f5;
}

.agency .badge {
  width: fit-content;
  margin: auto;
  display: flex;
}
.agency h2 {
  text-align: center;
  color: var(--primary);
}

.agency .items-container {
  max-width: 920px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.agency .items-container .item {
  background: var(--dimmed);
  padding: 10px;
  border-radius: var(--border-radius);
  display: flex;
  gap: 12px;
}
.agency .items-container .item p {
  font-size: 15px;
  width: 100%;
}

.how-it-works hr {
  min-width: 35px;
  height: 1px;
  background: var(--primary);
  border: 0;
  margin-top: 32px;
}
.how-it-works .step-item div {
  display: flex;
  align-items: center;
  gap: 6px;
}
.how-it-works .step-item span {
  background: #aed9ee;
  border-radius: 100px;
  padding: 6px 12px;
  width: fit-content;
  color: var(--primary);
  font-weight: bold;
  font-size: 18px;
  display: inline-flex;
}
.how-it-works .step-item p {
  font-size: 14px;
  margin-top: 10px;
}

.join {
  scroll-margin-top: 120px;
  background: linear-gradient(135deg, rgba(225, 244, 255, 0.4) 30%, rgba(37, 105, 139, 1)), var(--primary);
  box-shadow: inset 0px 0px 44px 0px rgba(58, 165, 220, 0.4);
  padding: 50px 0;
}
.join .badge {
  width: fit-content;
  margin: auto;
  display: block;
}
.join h2 {
  text-align: center;
  color: var(--white);
  margin-top: 20px;
}
.join .accordion {
  background: #e9f5fb;
  padding: 14px 16px;
  border-radius: var(--border-radius);
  max-height: 32px;
  margin-top: 20px;
}
.join h3 {
  margin: 0;
  width: 100%;
}

.started.container {
  padding: 50px 0;
}
.started .badge {
  width: fit-content;
  display: block;
  margin: auto;
}
.form {
  background: linear-gradient(135deg, rgba(225, 244, 255, 0.4) 30%, rgba(37, 105, 139, 1)), var(--primary);
  box-shadow: inset 0px 0px 44px 0px rgba(58, 165, 220, 0.4);
  padding: 50px 0;
}
.form h2,
.form p {
  color: white;
  text-align: center;
}

.form form {
  display: flex;
  flex-direction: column;
  background: #e9f5fb;
  border-radius: var(--border-radius);
  max-width: 600px;
  margin: auto;
  margin-top: 30px;
  padding: 20px;
}

.form .form-group {
  display: flex;
  gap: 25px;
}

footer {
  background-color: #1976a6;
  padding: 30px 0;
}

footer .container {
  display: flex;
  align-items: center;
}
footer p {
  font-size: 13px;
  width: 100%;
  color: #fff;
}

footer .container div {
  display: flex;
  align-items: center;
  gap: 20px;
}

footer a {
  display: block;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  text-decoration: underline;
  white-space: nowrap;
}

.form-label {
  margin-top: 25px;
  display: block;
  text-transform: uppercase;
  font-weight: bold;
}

.problem .data-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: auto;
}
.problem .data-item {
  background: var(--dimmed);
  border: 1px solid #c6e5f5;
  color: var(--primary);
  border-radius: var(--border-radius);
  padding: 8px 20px;
  text-align: center;
}
.problem .data-item span {
  font-weight: bold;
  font-size: 30px;
}
.problem .data-item p {
  font-size: 13px;
}
@media (width <= 1180px) {
  .problem .container,
  .you-get .container {
    padding: 0 20px;
  }

  .solution.container {
    padding: 60px 20px;
  }

  .benefits.container {
    padding: 60px 20px;
  }

  .agency .container {
    padding: 0 20px;
  }

  .how-it-works {
    padding: 40px 20px;
  }
  .join {
    padding: 40px 20px;
  }
  .started.container {
    padding: 50px 20px;
  }

  .form {
    padding: 50px 20px;
  }
  footer .container {
    padding: 0 20px;
  }
}

@media (width <= 768px) {
  h1 {
    font-size: 26px;
  }

  .hero {
    height: 100%;
    padding: 40px 0;
  }
  .hero .container,
  .problem .container {
    flex-direction: column;
    gap: 20px;
  }

  .md-w-50,
  .md-w-30,
  .md-w-70 {
    width: 100%;
  }

  .how-it-works .container {
    flex-direction: column;
  }

  .hidden {
    display: none;
  }
  .visbile {
    display: block;
  }

  .testimonials-1 {
    display: none !important;
  }
  .testimonials-2 {
    display: flex !important;
    margin-top: 20px;
    gap: 10px !important;
    padding: 15px !important;
  }
  .testimonials-2 .main {
    padding: 6px;
  }

  .summary {
    font-size: 14px;
  }
  .buttons-container {
    flex-direction: column;
  }
  .buttons-container a {
    width: 100%;
    text-align: center;
  }

  .you-get .container {
    padding: 0 20px;
  }
  .you-get .item-container {
    flex-direction: column;
  }
  .benefits-item {
    flex-direction: column;
    gap: 30px;
  }
  table thead {
    font-size: 11px;
  }
  table thead th {
    padding: 5px 4px;
  }
  table thead tr > :first-child {
    padding-left: 10px;
    text-align: left;
  }
  table thead tr > :last-child {
    padding-right: 10px;
  }
  table tbody tr > :first-child {
    padding-left: 10px;
    text-align: left;
  }
  table tbody tr > :last-child {
    padding-right: 10px;
  }
  table tbody {
    font-size: 12px;
  }
  table tbody td {
    padding: 10px 12px;
  }

  .how-it-works hr {
    display: none;
  }

  .form .form-group {
    flex-direction: column;
    gap: 10px;
  }
  .form label {
    font-size: 13px;
  }
  footer .container {
    flex-direction: column-reverse;
    gap: 20px;
  }
  footer .container p {
    text-align: center;
  }
  .form-label {
    margin-top: 12px;
    display: block;
    text-transform: uppercase;
    font-weight: bold;
  }
}

/* Signup form (hero + bottom) — a touch more compact per feedback */
.beta-signup-form label,
.beta-signup-form .form-label { font-size: 12px; }
.beta-signup-form .text-input { font-size: 13px; }
#signup h2 { font-size: 20px; }
#signup .summary { font-size: 13px; }

/* Even vertical rhythm for the signup form (hero + bottom) — the hero form-group
   wasn't styled and .form-label carries a 25px top margin, so spacing jumped. */
.beta-signup-form .form-group { display: flex; flex-direction: column; gap: 18px; }
.beta-signup-form .form-label { margin-top: 18px; }
