@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varta:wght@300..700&display=swap');

:root {
  --primary-color: #2a5caa;
  --secondary-color: #f5f5f5;
  --text-color: black;
  --accent-color: linear-gradient(180deg, color(display-p3 0.2902 0.5216 0.8549) 0%, color(display-p3 0 0.2462 0.601) 100%);;
  --footer-bg: #002B4E;
  --white: #ffffff;
  --gray: #C2C2C2;
  --font-family: 'Inter', sans-serif;
  --font-size-base: 16px;
  --font-size-h1: 2.5rem;
  --font-size-h2: 1.75rem;
  --font-size-p: 1rem;  
  --line-height: 1.6;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg:#2a5caa 32px;
  --wrapper-width: 1620px;
  --btn-padding: var(--spacing-sm) var(--spacing-md);
  --btn-border-radius: 5px;
  --btn-font-size: 1rem;
  --box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--text-color);
  line-height: var(--line-height);
}

.wrapper {
  max-width: var(--wrapper-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.header-block {
    width: 100%;
    position: absolute;
    z-index: 1;
}

.header-block .wrapper {
  max-width: 1620px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 36px;
}

.header-block .wrapper .logo {
  max-width: 107px;
}

.nav ul {
  display: flex;
  color: white;
  align-items: center;
  gap: 32px;
  list-style: none;
  font-size: 18px;
  font-weight: 300;
}

.nav-mob {
  display: none;
  background: none;
  border: 1px solid #9E9E9E;
  padding: 1rem;
  border-radius: 100px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.actions .signup,
.actions .login  {
  padding: 1rem;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 400;
  background: none;
  border: 0;
  color: white;
  transition: all .3s ease-in-out;
}

.actions .login {
  border: 1px solid #9E9E9E;
}

.actions .signup:hover,
.actions .login:hover {
  transform: scale(1.05);
}

.hero {
  background-color: var(--white);
  display: flex;
  align-items: center;
  background: var(--footer-bg);
  position: relative;
  padding-top: 160px;
}

.hero .wrapper {
  width: 100%;
  max-width: 1620px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 77px 0;
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.hero .illustration {
  display: flex;
  flex-direction: column;
  align-items: center;
} 

.hero .content {
  max-width: 1051px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.hero .content h1 {
  color: var(--white);
  font-size: 80px;
  font-weight: 700;
  line-height: 82px;
}

.hero .content p {
  font-size: 24px;
  font-weight: 200;
  color: var(--white);
}

.CTA-box {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.CTA-box .btn-cta {
  display: flex;
  align-items: center;
  background-color: black;
  border: 0;
  border-radius: 20px;
  cursor: pointer;
}

.cta {
  text-align: center;
  padding: var(--spacing-lg) 0;
  background-image: url(/wp-content/uploads/2025/06/Section-1.webp);
  background-repeat: no-repeat;
  background-position: bottom center;
}

.cta .wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  max-width: 1144px;
  margin: 0 auto;
  padding: 96px 0;
}

.cta .title {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.cta .title h2 {
  font-size: 56px;
  font-weight: 500;
  max-width: 830px;
  align-self: center;
}

.cta p {
  font-size: 24px;
  font-weight: 400;
}

.cta-btn.app {
  display: flex;
  width: 100%;
  max-width: 22.5rem;
  align-self: center;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 10px 24px;
  background: linear-gradient(90deg, rgba(252, 250, 247, 0.87) 46.93%, rgba(0, 117, 220, 0.60) 100%), linear-gradient(90deg, rgba(255, 255, 255, 0.20) 68.67%, rgba(105, 164, 230, 0.20) 100%);
  backdrop-filter: blur(30px);
  color: black;
  border-radius: 50px;
  border: 0;
  cursor: pointer;
  font-size: 20px;
  line-height: 22px;
}

.pricing {
  padding: 48px 0;
  width: 100%;
  background-image: url(/wp-content/uploads/2025/06/Section-2.webp);
  background-position: top center;
  background-repeat: no-repeat;
}

.pricing .wrapper {
  width: 100%;
  max-width: 1460px;
  margin: 0 auto;
}

.pr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  gap: 24px;
}

.pr-grid .item-box {
  background-color: var(--white);
  padding: var(--spacing-md);
  text-align: center;
  border: 1px solid #999;
  height: 450px;
  border-radius: 100px;
  max-width: 475px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  padding: 3rem;
}

.pr-grid .item-box .btn.btn-init {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  transition: transform .4s ease-in-out;
  padding: 30px;
  background: rgba(0, 176, 200, 0.13);
  border-radius: 50px;
  border: 0;
}

.pr-grid .item-box .btn.btn-init:hover {
  transform: rotate(42deg);
}

.pr-grid .item-box .item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.pr-grid .item-box:nth-child(2)::after {
  content: "";
  position: absolute;
  top: -1%;
  left: -2%;
  width: 104%;
  height: 102%;
  background-image: url(/wp-content/uploads/2025/05/Group-2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  pointer-events: none;
  z-index: -1;
}

.pr-grid .item-box .item-content p {
  text-align: left;
  font-size: 24px;
}

.item-value {
  font-size: 68px;
  font-weight: 300;
  color: black;
  font-family: 'Varta';
  text-align: left;
}

.description {
  width: 100%;
  /* background-image: url(/wp-content/uploads/2025/06/Section-3.webp); */
  background-position-x: 52px;
  background-repeat: no-repeat;
  background-size: cover;
}

.description .wrapper {
  width: 100%;
  max-width: 1620px;
  margin: 0 auto;
  padding: 4rem 0;
}

.description .banner {
  border: 1px solid #999;
  border-radius: 50px;
  padding: 35px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 500px;
  background: white;
  position: relative;
  overflow: hidden;
}

.description .banner .l-side {
  font-size: 24px;
  font-weight: 400;
  max-width: 437px;
}

.description .banner .r-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 707px;
}

.description .banner .r-side h2 {
  font-size: 42px;
  font-weight: 400;
}

.description .banner .r-side .additional {
  padding: 24px 48px;
  border-radius: 30px;
  border: 1px solid #999;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  font-size: 24px;
  font-weight: 400;
}

.description .banner .gradient {
  position: absolute;
  bottom: 0;
  left: 0;
}

.description .banner .app {
  position: absolute;
  left: -15%;
  top: 0;
  z-index: 1;
} 

.stats {
  width: 100%;
  background-image: url(/wp-content/uploads/2025/06/Section-4.webp);
  background-repeat: no-repeat;
  background-position-y: 4px;
  background-position-x: 5.625rem;
  background-size: cover;
}

.stats .wrapper {
  max-width: 1460px;
  margin: 0 auto;
  width: 100%;
  padding: 6rem 0;
}

.stats-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 1rem;
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 300px;
  align-items: center;
}

.stats-item .value {
  font-size: 68px;
  font-weight: 700;
  background-image: linear-gradient(180deg, #3187E1 0%, #00409F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats-item p {
  font-size: 18px;
  font-weight: 700;
  color: #D9D9D9;
  line-height: 40px;
}

.about {
  width: 100%;
  background-image: url(/wp-content/uploads/2025/06/Section-5-scaled.webp);
  background-repeat: no-repeat;
  background-position-x: 3rem;
  background-size: cover;
}

.about .wrapper {
  width: 100%;
  max-width: 1620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10rem;
  padding: 6rem 0;
}

.desc-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.desc-row:nth-child(even) {
  flex-direction: row-reverse;
}

.desc-row img {
  width: 100%;
  max-height: 690px;
  max-width: 41.25rem;
}

.desc-row .content {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  width: 100%;
  max-width: 713px;
}

.desc-row .content .text {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.desc-row .content .text h2 {
  font-size: 42px;
  font-weight: 500;
}

.desc-row .content .text p {
  color: #C2C2C2;
  font-size: 24px;
  font-weight: 400;
}

.btn.desc-link {
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  border: 0;
  border-radius: 50px;
  max-width: 370px;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  color: black;
}

.btn.desc-link img {
  max-width: 58px;
}

.btn.desc-link span {
  padding: 16px;
  font-size: 20px;
  font-weight: 400;
  border-radius: 50px;
  background: rgba(252, 250, 247, 0.87);
}

.footer-block {
  background-color: var(--footer-bg);
  color: var(--white);
  padding: 111px 0 3rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.footer-block .wrapper {
  display: flex;
  width: 100%;
  max-width: 1728px;
  justify-content: space-between;
}

.footer-block .wrapper .r-side {
  display: flex;
  align-items: flex-start;
  gap: 6rem;
}

.footer-block .wrapper .l-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-block .wrapper .l-side .logo {
  max-width: 106px;
}

.footer-block .wrapper .l-side .contact {
  display: flex;
  flex-direction: column;
}

.footer-block .wrapper .l-side .contact a {
  color: white;
  text-decoration: none;
}

.footer-block .wrapper .l-side .contact a:last-child {
  text-decoration: underline;
}

.footer-block .nav-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-block .nav-col span {
  font-size: 18px;
  font-weight: 600;
}

.footer-block .nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-block .nav-col li {
  text-decoration: underline;
  font-size: 16px;
  font-weight: 300;
}

.social {
  width: 100%;
  padding-top: 4rem;
  margin-top: 1.5rem;
  border-top: 1px solid white;
}

.social .wrapper {
  width: 100%;
  max-width: 1472px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social .wrapper .links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social .wrapper .links .link-item img {
  max-width: 2.25rem;
}

@media screen and (max-width: 1920px) {
  .wrapper {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .btn-cta img {
    position: unset !important;
    transform: unset !important;
  }
}

@media screen and (max-width: 1620px) {
  .hero .content h1 {
    font-size: 48px;
    line-height: unset;
  }

  .pr-grid .item-box {
    height: 450px;
  }

  .description .banner .l-side {
    display: none;
  }

  .description .banner {
    background-position-y: -100%;
    background-repeat: no-repeat;
    background-position-x: 0;
    justify-content: center;
    height: 650px;
    overflow: hidden;
  }

  .desc-row img {
    max-width: 30rem;
  }

  .desc-row .content .text h2 {
    font-size: 2rem;
  }

  .desc-row .content .text p {
    font-size: 1.5rem;
  }

  .description .banner .app {
    position: absolute;
    left: 15%;
    max-width: 80%;
    top: 45%;
    z-index: 1;
  }
}

@media screen and (max-width: 1024px) {

  .header-block .wrapper {
    padding-top: 1rem;
  }

  .header-block .wrapper .logo {
    max-width: 4.5rem;
  }

  .nav,
  .actions {
    display: none;
  }

  .nav-mob {
    display: block;
  }

  .hero {
    padding-top: 6rem;
  }

  .hero .wrapper {
    flex-direction: column;
    position: relative;
    align-items: flex-start;
    gap: 6rem;
    padding: 3rem 1rem 3.25rem;
  }

  .hero .content {
    max-width: 480px;
    gap: 18px;
  }

  .hero .illustration img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1rem;
  }

  .cta .wrapper {
    padding: 2rem 1rem;
  }

  .cta .title {
    gap: 1.5rem;
  }

  .cta .title h2 {
    font-size: 24px;
  }

  .cta p {
    font-size: 1rem;
  }

  .pr-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .pr-grid .item-box {
    height: unset;
    padding: 2rem 3rem;
    max-width: unset;
    background: rgba(198, 226, 255, 0.22);
    border-radius: 48px;
  }

  .pr-grid .item-box:nth-child(2)::after {
    background-image: none;
  }

  .item-value {
    font-size: 3rem;
  }

  .pr-grid .item-box .item-content p {
    font-size: 1rem;
  }
  
  .pr-grid .item-box .btn.btn-init {
    background: transparent;
  }

  .description .banner {
    height: 374px;
    background-position-y: 10rem;
    background-position-x: 30%;
  }

  .description .banner .r-side h2 {
    font-size: 1.25rem;
  }

  .description .banner .r-side .additional {
    font-size: 1rem;
    padding: 0;
    border-radius: 0;
    border: 0;
  }

  .description .banner .gradient {
    top: 0;
    bottom: unset;
  }

  .about .wrapper {
    gap: 2rem;
  }

  .stats-row {
    flex-wrap: wrap;
  }

  .desc-row,
  .desc-row:nth-child(even) {
    flex-direction: column-reverse;
  }

  .desc-row .content {
    gap: 1.5rem;
  }

  .btn.desc-link {
    align-self: center;
  }

  .footer-block {
    padding: 32px 0 1.5rem;
  }

  .footer-block .wrapper .r-side {
    gap: 1.5rem;
  }

  .footer-block .nav-col li {
    font-size: 1rem;
  }

  .description,
  .stats,
  .pricing {
    background-image: none;
  }

  .about {
    background-position-x: 12rem;
  }
}

@media screen and (max-width: 768px) {
  .footer-block {
    position: relative;
  }

  .footer-block .wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-block .wrapper .l-side,
  .footer-block .wrapper .r-side {
    gap: 1rem;
  }

  .footer-block .wrapper .r-side {
    flex-direction: column;
  }

  .social {
    padding-top: .5rem;
    border: 0;
  }

  .social .wrapper .links {
    position: absolute;
    top: 32px;
    right: 1rem;
  }

  .stats .wrapper {
    padding: 0;
  }

  .stats-row {
    flex-direction: column;
    align-items: center;
  }

  .illustration .app-mock {
    max-width: 22.5rem;
  }

  .CTA-box {
    flex-direction: column;
  }

  .CTA-box .btn-cta,
  .CTA-box .btn-cta img {
    max-width: 163px;
  }

  .hero .wrapper {
    gap: 0;
    align-items: center;
  }

  .hero .illustration {
    flex-direction: row-reverse;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero .illustration img {
    position:unset;
    top: unset;
    transform: unset;
    right: unset;
  }

  .description .banner .app {
    position: absolute;
    max-width: 100%;
    top: 60%;
    z-index: 1;
  }
}