:root {
  --main-bg-color: #dde0ee;
  --accent-color: #2745eb;
  --dark-text: #000;
  --light-text: #fff;
  --secondary-dark: #14171f;
  --light-surface: #eef3ff;
  --font-raleway: "Raleway", sans-serif;
  --font-poppins: "Poppins", sans-serif;
  --font-body: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--main-bg-color);
  color: var(--white);
  font-family: var(--font-poppins);
  margin: 0;
  padding: 0;
}

body.no-scroll {
  overflow: hidden;
}

.wrapper {
  width: calc(100% - 100px);
  background-color: #fff;
  margin: 50px;
  border-radius: 50px;
  padding: 50px;
  box-sizing: border-box;
}

.wrapper.gradient {
  background: linear-gradient(180deg, #2745eb 0%, #2d4dfd 51%, #101f6f 100%);
}

.hero {
  position: relative;
  height: inherit;
}

.hero-items {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  gap: 20px;
}

.hero-item {
  background-color: var(--light-surface);
  border-radius: 30px;
  padding: 30px;
  flex: 1;
}

.hero-item .title {
  color: var(--dark-text);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

.hero-item img {
  height: 90px;
}

.container {
  max-width: 1440px;
  margin: auto;
  padding: 0 40px;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
}

.nav-link.active {
  color: var(--white);
}

.navbar-brand {
  width: 200px;
}

.navbar-brand img {
  width: 100%;
}

/* Text Styling */
h1 {
  font-size: 58px;
  font-weight: 900;
  font-family: var(--font-raleway);
  color: var(--light-text);
}

.hero .subtitle-2 {
  color: var(--light-text);
}

h2 {
  margin-bottom: 20px;
  font-size: 48px;
  font-family: var(--font-raleway);
  font-weight: 900;
  color: var(--accent-color);
}

.subtitle-2 {
  max-width: 70%;
  margin: auto;
  font-family: var(--font-poppins);
  font-weight: 400;
  color: var(--dark-text);
  font-size: 24px;
  letter-spacing: -0.3px;
  margin-bottom: 50px;

  text-align: center;
  margin-top: 0;
}

.subtitle-1 {
  font-family: var(--font-raleway);
  font-weight: 600;
  color: var(--accent-color);
  font-size: 32px;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
}

.navbar-collapse {
  flex-grow: unset;
}

.btn-link.nav-item,
.btn-link {
  color: var(--light-text);
  background-color: var(--accent-color);
  text-decoration: none;
  padding: 16px 60px;
  font-size: var(--font-body);
  line-height: 26px;
  transition: 0.5s all;
  border-radius: 10px;
  font-weight: 500;
}

.btn-link:hover {
  cursor: pointer;
  opacity: 0.8;
}

.nav-item {
  padding: 16px 20px;
  list-style-type: none;
}

.nav-link:hover {
  color: var(--accent-color);
}

header {
  width: 100%;
}

.navbar .wrapper,
footer .wrapper {
  width: 100%;
  background-color: #fff;
  margin: 0;
  border-radius: 0;
  padding: 0;
}

header .container {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: auto;
  box-sizing: border-box;
}

.hero .content {
  width: 100%;

  text-align: center;
  margin: 50px auto;
}

.center-x-y {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

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

.youtube-video {
  width: 100%;
  height: 510px;
  background-color: var(--light-surface);
  border-radius: 20px;
  max-width: 900px;
}

.play-icon {
  width: 120px;
}

.trusted-by-carousel {
  width: 100%;
}

.trusted-by-carousel .slick-slide {
  margin: 0 50px;
}

.trusted-by-carousel .slick-track {
  display: flex;
  align-items: center;
}

.trusted-by-carousel img {
  max-height: 90px;
  filter: grayscale(100%);
}

.solution-content {
  margin-right: 140px;
}

.gradient h2,
.gradient .subtitle-2 {
  color: var(--light-text);
}

.solution-container {
  margin-bottom: 100px;
}

.solution-container:nth-child(2) .solution-content {
  order: 2;
  margin-left: 140px;
  margin-right: 0;
}
.solution-container:nth-child(2) .illustration {
  order: 1;
}
.price-card {
  background-color: var(--light-surface);
  color: var(--light-blue);
  padding: 40px 50px;
  text-align: center;
  border-radius: 15px;
}

.price-card .subtitle-1 {
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.price-container {
  display: grid;
  gap: 50px;
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(calc(33.333% - 50px), 1fr));
}

.price-value {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.price-value .price {
  font-size: 30px;
  font-weight: 500;
}

.price-value .price .small {
  font-size: 26px;
  font-weight: 500;
  color: var(--light-blue);
}

.options {
  margin: 40px 0;
  gap: 20px;
  display: flex;
  flex-flow: column;
}

.options .option {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.price-card .btn-link {
  margin-top: 90px;
  display: block;
}

.accordion-container {
  position: relative;
}

.wide-box {
  width: 800px;
  margin-bottom: 50px;
  border-radius: 18px;
}

.wide-box.active {
  border: 2px solid var(--accent-color);
}

.wide-box:hover {
  cursor: pointer;
}

@media (max-width: 700px) {
  .wide-box {
    width: 100%;
  }
}

.header {
  width: 100%;
  background-color: var(--accent-color);
  height: 100px;
  padding: 0 30px;
  color: #fff;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  border-radius: 15px;
}

.header p {
  opacity: 0.9;
  margin: 0;
  color: var(--white);
  text-align: center;
  font-size: 20px;
}

.accordion-container .body {
  padding: 30px;
  box-sizing: border-box;
  display: none;
}

.cross-icon {
  position: absolute;
  right: 45px;
  transition: all 0.5s ease-in;
  opacity: 0.8;
}

.cross-icon::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  border-radius: 10px;
  background-color: white;
}

.cross-icon::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 3px;
  border-radius: 10px;
  background-color: white;
  left: 8px;
  bottom: -12px;
  transition: all 0.5s ease-in;
}

.active.cross-icon::before {
  transform: rotate(90deg);
}

.contact-form {
  display: flex;
  flex-flow: column;
  align-items: center;
}

.contact-form input {
  border: 1px solid #b1b9d0;
  background-color: transparent;
  color: var(--white);
  font-size: 16px;
  font-family: "Nunito";
  width: 600px;
  height: 20px;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 15px;
}

.contact-form textarea {
  border: 1px solid #b1b9d0;
  background-color: transparent;
  color: var(--white);
  font-size: 16px;
  font-family: "Nunito";
  padding: 30px;
  width: 600px;
}

.contact-form textarea {
  margin-bottom: 50px;
  border-radius: 15px;
}

footer .container {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
}

.privacy-links a {
  color: var(--dark-text);
  text-decoration: none;
  margin: 0 10px;
}

.social a {
  margin: 0 10px;
}

.btn2 {
  position: absolute;
  width: 45px;
  height: 50px;
  top: 4px;
  right: 10px;
  transition-duration: 0.5s;
}

.btn2 .icon {
  transition-duration: 0.5s;
  position: absolute;
  width: 35px;
  height: 4px;
  top: 30px;
  background-color: var(--accent-color);
  border-radius: 10px;
}

.btn2 .icon:before {
  transition-duration: 0.5s;
  position: absolute;
  width: 35px;
  height: 4px;
  background-color: var(--accent-color);
  content: "";
  top: -12px;
  border-radius: 10px;
}

.btn2 .icon:after {
  transition-duration: 0.5s;
  position: absolute;
  width: 35px;
  height: 4px;
  background-color: var(--accent-color);
  content: "";
  top: 12px;
  border-radius: 10px;
}

.btn2.open .icon {
  transition-duration: 0.5s;
  background: transparent;
}

.btn2.open .icon:before {
  transform: rotateZ(45deg) translate(9px, 7px);
}

.btn2.open .icon:after {
  transform: rotateZ(-45deg) translate(10px, -9px);
}

.btn2:hover {
  cursor: pointer;
}

.hamburger-menu {
  display: none;
}

@media (max-width: 1200px) {
  .nav-link {
    font-size: 14px;
  }

  .subtitle-1 {
    font-size: 26px;
  }

  .price-value .price {
    font-size: 20px;
  }

  .price-card .subtitle-1 {
    margin-bottom: 40px;
  }

  .price-card .btn-link {
    margin-top: 50px;
  }

  .price-card {
    padding: 50px 30px;
  }
}

@media (max-width: 992px) {
  .wide-box {
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
  }

  .wrapper {
    width: calc(100% - 40px);
    margin: 20px;
    border-radius: 50px;
    padding: 20px;
  }

  footer .logo img {
    width: 100%;
    margin-bottom: 30px;
  }

  .header {
    height: auto;
    padding: 20px;
    min-height: 50px;
  }

  .header .subtitle-2 {
    max-width: 90%;
    text-align: left;
  }

  .navbar-nav {
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    background-color: var(--light-surface);
    flex-flow: column;
    width: calc(100% - 70px);
    transition: 0.5s all;
    margin: 0;
    z-index: 1;
    height: 100%;
    justify-content: flex-start;
    padding: 0;
  }

  .accordion-container {
    width: 100%;
  }

  .trusted-by-carousel .slick-slide {
    margin: 0 20px;
  }

  .navbar-nav.mobile {
    left: 0;
  }

  .navbar-brand {
    width: 140px;
    margin: 20px auto;
  }

  .hamburger-menu {
    display: block;
    z-index: 10;
    top: 27px;
    right: 20px;
  }

  .btn-link.nav-item,
  .btn-link {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    max-width: 250px;
    margin: 30px auto auto;
  }

  .price-container {
    display: flex;
    flex-flow: column;
    gap: 30px;
    width: 100%;
  }

  .price-card {
    padding: 30px 30px;
    width: 100%;
    box-sizing: border-box;
  }

  .price-card .subtitle-1 {
    margin-bottom: 30px;
  }

  .container {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }

  .youtube-video {
    width: 100%;
    height: 300px;
    max-width: 600px;
  }

  h1 {
    font-size: 38px;
  }

  .subtitle-2 {
    font-size: 16px;
    margin-bottom: 50px;
    margin-top: 0;
    text-align: center;
    max-width: 100%;
  }

  .hero .subtitle-2 {
    font-size: 20px;
    text-align: center;
    max-width: 100%;
  }

  .hero .content {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    margin: 50px auto;
  }

  .hero-items {
    flex-flow: column;
    text-align: center;
  }

  .hero-item .title {
    font-size: 18px;
  }

  .play-icon {
    width: 60px;
  }

  h2 {
    margin-bottom: 20px;
    font-size: 28px;
    text-align: center;
  }

  .center-x-y {
    flex-flow: column;
  }

  .solution-container {
    height: auto;
    margin-bottom: 50px;
  }

  .subtitle-1 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .solution-content {
    margin-right: 0;
    width: 100%;
  }

  .solution-container:nth-child(2) .solution-content {
    order: 1;
    margin-left: 0;
  }

  .illustration {
    width: 70%;
    margin-bottom: 50px;
    margin-top: 20px;
    max-width: 400px;
  }

  .solution-container:last-of-type .illustration {
    margin-bottom: 0;
  }

  header {
    height: auto;
  }

  .contact-form {
    width: 100%;
  }

  .contact-form input {
    box-sizing: border-box;
    width: 100%;
    height: 60px;
    padding: 20px;
  }

  .contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 2rem; /* spacing between columns */
    margin-top: 1.5rem;
  }

  .contact-grid h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #222;
  }

  .contact-grid p {
    margin: 0.3rem 0;
    color: #555;
  }

  footer .container {
    flex-flow: column;
  }
}
