@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

:root {
  --blue: #0576f0;
  --bluishGray: #1c6ca9;
  --darkBlue: #1757b1;
  --lightBlue: #27a2ff;
  --cyan: #f4f9ff;
  --black: #2c344b;
  --white: #ffffff;
  --fontFamily: "Rubik", sans-serif;
  --linearGradient: linear-gradient(
    180deg,
    #27a2ff 0%,
    #1385f5 47%,
    #0576f0 100%
  );
  --linearGradientHero: linear-gradient(180deg, #27a2ff 66%, #0576f0 93%);
  --radialGradientHero: radial-gradient(
    circle at bottom left,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(23, 87, 177, 0.3) 100%
  ); /* bottom layer */
  --shadow: 0px 0px 128px rgba(0, 50, 73, 0.2);
}

/* Default Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1 {
  font-family: var(--fontFamily);
  font-weight: 500;
  font-size: 47.78px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--black);
}
h2 {
  font-family: var(--fontFamily);
  font-weight: 500;
  font-size: 38.81px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--black);
}

h3 {
  font-family: var(--fontFamily);
  font-weight: 500;
  font-size: 33.18px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--black);
}

h4 {
  font-family: var(--fontFamily);
  font-weight: 500;
  font-size: 27.65px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--black);
}

h5 {
  font-family: var(--fontFamily);
  font-weight: 500;
  font-size: 23.04px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--black);
}

h6 {
  font-family: var(--fontFamily);
  font-weight: 500;
  font-size: 19.2px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--black);
}

html,
body {
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: var(--fontFamily);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--black);
  background-color: var(--white);
  overflow: hidden;
}

label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  height: auto;
  /* border-radius: 16px; */
}

p {
  line-height: 1.5;
  margin: 0;
}

.mt-48 {
  margin-top: 48px;
}

.shadow-img {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.text-blue {
  color: var(--blue);
}

.gradient-bg {
  background: var(--linearGradient);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-top: 80px;
  padding-bottom: 80px;
  color: var(--white);
}
.cyan-bg {
  background-color: var(--cyan);
  padding-top: 80px;
  padding-bottom: 80px;
  border-radius: 10px 10px 0 0;
}

.gap-16 {
  gap: 8px;
}

.wrapper {
  border-radius: 20px;
  overflow: hidden;
  width: 300px;
  height: 150px;
}

.trapezoid {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
}

.trapezoid-svg {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  height: 210px;
}

.trapezoid-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.trapezoid-svg .text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 32px 90px;
  box-sizing: border-box;
}

.btn-zitapp {
  text-decoration: none;
  color: var(--white) !important;
  padding: 12px 20px !important;
  border-radius: 50px;
  background-color: var(--bluishGray);
  transition: 0.3s all ease-in;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-zitapp .btn-icon {
  background: var(--white);
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  transition: 0.3s all ease-in;
}
.btn-zitapp .btn-icon svg {
  height: 20px;
  width: 20px;
  color: var(--bluishGray);
  transition: 0.3s all ease-in;
}
.btn-zitapp-inverted {
  text-decoration: none;
  color: var(--blue);
  padding: 12px 20px;
  border-radius: 50px;
  background-color: var(--white);
  transition: 0.3s all ease-in;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-zitapp-inverted .btn-icon {
  background: var(--linearGradient);
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  transition: 0.3s all ease-in;
}
.btn-zitapp-inverted .btn-icon svg {
  height: 20px;
  width: 20px;
  color: var(--white);
  transition: 0.3s all ease-in;
}

.btn-zitapp:hover .btn-icon,
 .btn-zitapp:focus .btn-icon,
.btn-zitapp:focus-visible .btn-icon,
.btn-zitapp:focus-within  .btn-icon {
  transform: scale(1.2);
  transition: 0.3s all ease-in;
}

.btn-zitapp-inverted:hover .btn-icon,
 .btn-zitapp-inverted:focus .btn-icon,
.btn-zitapp-inverted:focus-visible .btn-icon,
.btn-zitapp-inverted:focus-within  .btn-icon {
  transform: scale(1.2);
  transition: 0.3s all ease-in;
}

.btn-zitapp-inverted:hover {
  color: var(--bluishGray);
  transition: 0.3s all ease-in;
}

section {
  padding-top: 80px;
  padding-bottom: 80px;
}

section.first {
  padding-top: 160px;
}

.heading-content {
  gap: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.heading-content h2.title > span {
  background: var(--linearGradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero {
  background: var(--linearGradientHero), var(--radialGradientHero);
  color: var(--white);
  border-radius: 10px;
  margin-top: 12px;
  height: 820px;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 80px;
}
.hero .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.hero-img-deco {
  position: relative;
}
.hero-img-deco .hero-img {
  position: absolute;
  bottom: -16px;
  height: 300px;
  left: 50%;
  transform: translate(-50%, 100%) !important;
}
.subtitle {
  padding: 10px 20px;
  background-color: var(--blue);
  color: var(--white);
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.subtitle svg {
  height: 20px;
  width: 20px;
}
.subtitle p {
  font-size: 14px;
  font-weight: 500;
}
.subtitle.inverted {
  color: var(--bluishGray);
  background-color: var(--white);
  margin-bottom: 12px;
}

.hero-badge {
  padding: 12px 16px;
  background-color: var(--white);
  color: var(--black);
  display: inline-flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.hero-badge .badge-icon {
  background: var(--blue);
  width: 56px;
  height: 56px;
  padding: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  transition: 0.3s all ease-in;
}
.hero-badge .badge-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}
.hero-badge .hero-badge-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero-badge.one {
  position: absolute;
  bottom: -110px;
  left: 100px;
  transform: translate(0, 100%) !important;
  z-index: 2;
}
.hero-badge.two {
  position: absolute;
  bottom: -190px;
  right: 0;
  transform: translate(0%, 100%) !important;
  z-index: 2;
}

nav {
  padding: 12px 32px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
  z-index: 10;
  position: fixed;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  border-radius: 50px;
}
nav .logo {
  display: flex;
  align-items: center;
}
nav .logo img {
  height: 60px;
  width: auto;
  margin-right: 10px;
}
nav .logo h1 {
  font-size: 1.1rem;
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
}
nav ul li {
  width: auto;
}
nav ul li a {
  text-decoration: none;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  padding: 4px 16px;
  transition: 0.3s all ease-in;
}

nav ul li a:hover {
  color: var(--blue);
}
.hamburger-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: var(--linearGradient);
  padding: 7px 10px;
  height: 45px;
  width: 45px;
  border-radius: 6px;
}

.hamburger .line {
  width: 25px;
  height: 2px;
  background-color: var(--white);
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
}
.hamburger-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
}

.hamburger-active .line:nth-child(2) {
  width: 0px;
}

.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
  transition-delay: 0.3s;
}

.hamburger-active .line:nth-child(1) {
  transform: translateY(7px) rotate(-50deg);
}

.hamburger-active .line:nth-child(3) {
  transform: translateY(-10px) rotate(50deg);
}

.menubar {
  position: fixed;
  top: 0;
  left: -70%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 48px;
  width: 40%;
  height: 100vh;
  padding: 48px 24px;
  background: rgba(255, 255, 255);
  transition: all 0.5s ease-in;
  z-index: 12;
  box-shadow: var(--shadow);
  border-bottom: 10px solid var(--bluishGray);
}

.menubar .mobile-logo {
  height: 70px;
}
/* .menubar.active::before{
  content: "";
  position: fixed;
  top: 0;
  left: initial;
  width: 60%;
  height: 100vh;
  background-color: rgba(0, 50, 73, 0.2);
  z-index: 11;
  transition: all 0.5s ease-in;
  opacity: 1;
} */
.active {
  left: 0;
}
/* .active::before {
  right: 0;
  opacity: 0;
  transition: all 0.5s ease-in;
} */

.menubar ul {
  padding: 0;
  list-style: none;
}
.menubar ul li {
  margin-bottom: 32px;
}

.menubar ul li a {
  text-decoration: none;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  padding: 5px 10px;
  transition: 0.3s all ease-in;
}

.menubar ul li a:hover {
  color: var(--blue);
}
/* .menubar ul li a:hover {
  background-color: #f5f5f5;
} */

.card-blue {
  background-color: var(--cyan);
  color: var(--black);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  height: 100%;
}
.card-blue .icon-content {
  background-color: var(--white);
  height: 48px;
  width: 48px;
  padding: 10px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-blue .icon-content svg {
  color: var(--blue);
  height: 28px;
  width: 28px;
}

.transparent-cards-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  gap: 48px;
}

.transparent-card {
  background-color: transparent;
  color: var(--black);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.transparent-card .icon-content {
  background-color: var(--blue);
  height: 48px;
  width: 48px;
  padding: 10px;
  border-radius: 30px;
}

.transparent-card .icon-content svg {
  color: var(--white);
  height: 28px;
  width: 28px;
}

.pricing-card {
  background-color: var(--cyan);
  padding: 40px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.pricing-card .plan-price {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.pricing-card .right-side,
.pricing-card .left-side {
  width: 50%;
}
.pricing-card .left-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.pricing-card .benefits-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-card .benefits-container .benefit {
  display: flex;
  gap: 12px;
  align-items: center;
}

.pricing-card .icon-content {
  background-color: var(--white);
  height: 32px;
  width: 32px;
  padding: 6px;
  border-radius: 30px;
}
.pricing-card .icon-content svg {
  color: var(--blue);
  height: 20px;
  width: 20px;
}
.accordion-item {
  border: none;
  margin-bottom: 48px;
}
.accordion-button {
  background-color: var(--cyan);
  color: var(--black);
  border-radius: 25px !important;
  padding: 24px 20px;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: #deedff;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  box-shadow: none;
}
.accordion-body {
  background-color: #deedff;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
footer {
  margin-bottom: 12px;
}
.footer-img {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
}

.links-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
}
.links-container a {
  color: var(--white);
  text-decoration: none;
}
