*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #F7F8FA;
  color: #222;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}


img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
}

.highlight {
  color: #2E8FFF;
  font-weight: 700;
}

/*HEADER*/

.header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: #fff;
  border-bottom: 1px solid #ececec;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .04);
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: auto;
}

.header .container {
  height: 92px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 70px;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-text {
  font-size: 18px;
  font-style: italic;
  color: #556174;
}

.btn {
  border: none;
  cursor: pointer;
  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: .25s;
}

.btn-download {

  background: #FDBE21;

  color: #fff;
  font-weight: 700;

  height: 46px;
  padding: 0 28px;

  border-radius: 12px;

  box-shadow: 0 6px 12px rgba(0, 0, 0, .18);
}

.btn-download:hover {

  transform: translateY(-2px);

  box-shadow: 0 10px 18px rgba(0, 0, 0, .18);
}

.btn-language {

  width: 64px;
  height: 46px;

  background: white;

  border-radius: 12px;

  font-weight: 700;

  color: #4f5d73;

  box-shadow: 0 6px 12px rgba(0, 0, 0, .15);
}

.btn-language:hover {

  transform: translateY(-2px);
}

html {
  scroll-behavior: smooth;
}

@media (max-width:768px) {

  .header .container {

    height: 72px;
  }

  .logo img {

    height: 52px;
  }

  .header-text {

    display: none;
  }

  .header-actions {

    gap: 12px;
  }

  .btn-download {

    height: 42px;
    padding: 0 18px;
  }

  .btn-language {

    width: 52px;
    height: 42px;
  }

}

/*HERO*/

.hero {

  position: relative;

  max-width: 1200px;

  margin: 28px auto 50px;

  background: #FDBE21;

  border-radius: 32px;

  overflow: hidden;

  min-height: 650px;

  display: flex;
  align-items: center;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, .12);

}

.hero-content {

  width: 65%;

  padding: 70px 80px;

  position: relative;
  z-index: 2;

}

.hero h1 {

  color: white;

  font-size: 72px;

  line-height: 1.05;

  font-weight: 800;

  margin-bottom: 34px;

}

.hero p {

  max-width: 520px;

  font-size: 28px;

  line-height: 1.35;

  color: #475569;

  margin-bottom: 42px;

}

.hero-buttons {

  display: flex;

  gap: 16px;

  flex-wrap: wrap;

}

.store-btn {

  height: 60px;

  border-radius: 16px;

  display: flex;

  align-items: center;

  gap: 14px;

  padding: 0 22px;

  font-size: 18px;

  font-weight: 700;

  transition: .25s;

  box-shadow:
    0 8px 16px rgba(0, 0, 0, .18);

}

.store-btn img {

  width: 34px;

}

.android {

  background: #4897E7;

  color: white;

}

.apple {

  background: white;

  color: #4B5563;

}

.store-btn:hover {

  transform: translateY(-4px);

}

.hero-circle {

  position: absolute;

  right: -400px;

  top: -220px;

  width: 850px;

  height: 850px;

  border-radius: 50%;

  background: rgba(255, 255, 255, .25);

  animation: floatCircle 8s ease-in-out infinite;

}

@keyframes floatCircle {

  50% {

    transform:
      translate(20px, -15px);

  }

}

@media(max-width:992px) {

  .hero {

    min-height: auto;

  }

  .hero-content {

    width: 100%;

    padding: 60px 50px;

  }

  .hero h1 {

    font-size: 54px;

  }

}

@media(max-width:768px) {

  .hero {

    margin: 16px;

    border-radius: 24px;

  }

  .hero-content {

    padding: 40px 28px;

  }

  .hero h1 {

    font-size: 42px;

  }

  .hero p {

    font-size: 22px;

  }

  .hero-circle {

    width: 500px;
    height: 500px;

    right: -220px;
    top: -170px;

  }

  .store-btn {

    width: 100%;
    justify-content: center;

  }

}

/*FEATURES*/

.features {
  padding: 50px 0;
}

.section-label {
  color: #4897E7;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 50px;
}

.section-title {
  max-width: 900px;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  color: #4B5563;
  margin-bottom: 28px;
}

.section-description {
  max-width: 760px;
  font-size: 30px;
  line-height: 1.4;
  color: #5F6B7A;
  margin-bottom: 56px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.feature-card {
  background: #fff;
  border-radius: 22px;
  padding: 34px 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
  transition: .25s;
}

.feature-card h3 {
  color: #4897E7;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 20px;
}

.feature-card p {
  font-size: 18px;
  line-height: 1.45;
  color: #5F6B7A;
}

@media(max-width:992px) {

  .section-title {
    font-size: 48px;
  }

  .section-description {
    font-size: 24px;
  }

}

@media(max-width:768px) {

  .features {
    padding: 60px 0;
  }

  .section-title {
    font-size: 36px;
  }

  .section-description {
    font-size: 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

}

/*APP PREVIEW*/
.app-preview {
  padding: 50px 0;
}

.preview-description {
  font-size: 36px;
  color: #5F6B7A;
  margin-top: 22px;
  margin-bottom: 48px;
}

.phones {

  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 34px;

}

.phone {

  flex: 1;
  max-width: 340px;

  transition:
    transform .35s ease,

}

.phone img {

    width: 100%;
    display: block;
    object-fit: contain;
    object-position: center;

    border-radius: 34px;

    border: 3px solid #fff;

    box-shadow: none !important;

}

.phone:hover {

  transform:
    translateY(-10px);

}

.phone:nth-child(1) {

  animation: fadeUp .6s ease both;

}

.phone:nth-child(2) {

  animation: fadeUp .6s .15s ease both;

}

.phone:nth-child(3) {

  animation: fadeUp .6s .3s ease both;

}

@keyframes fadeUp {

  from {

    opacity: 0;
    transform: translateY(30px);

  }

  to {

    opacity: 1;
    transform: translateY(0);

  }

}

@media(max-width:992px) {

  .phones {

    gap: 20px;

  }

}

@media(max-width:768px) {

  .app-preview {

    padding: 70px 0;

  }

  .preview-description {

    font-size: 24px;

  }

  .phones {

    flex-direction: column;
    align-items: center;

  }

  .phone {

    max-width: 320px;

  }

}

/*RESULTS*/
.results {
  padding: 100px 0;
}

.results-card {

  position: relative;

  overflow: hidden;

  background: #5B9EE5;

  border-radius: 30px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);

}

.results-content {

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 70px;

  position: relative;
  z-index: 2;

}

.results-text {

  max-width: 520px;

}

.results-text h2 {

  font-size: 64px;
  line-height: 1.1;
  color: white;
  font-weight: 800;

  margin-bottom: 40px;

}

.results-text p {

  font-size: 30px;
  line-height: 1.4;
  color: white;

  opacity: .95;

}

.results-image {

  flex-shrink: 0;

}

.results-image img {

  width: 320px;

  transition: .35s;

      object-fit: contain;
    object-position: center;

    border-radius: 34px;

    border: 3px solid #fff;

    box-shadow: none !important;

}

.results-image img:hover {

  transform: translateY(-8px);

}

.results-bg-circle {

  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);

  animation: floatBackground 10s ease-in-out infinite;

}

.results-bg-circle.big {

  width: 700px;
  height: 700px;

  right: -250px;
  top: -150px;

}

.results-bg-circle.small {

  width: 120px;
  height: 120px;

  left: 44%;
  top: 46%;

  animation-duration: 8s;

}

@keyframes floatBackground {

  50% {

    transform:
      translate(20px, -15px);

  }

}

@media(max-width:992px) {

  .results-content {

    flex-direction: column;
    text-align: center;
    gap: 50px;

  }

  .results-text {

    max-width: 700px;

  }

  .results-text h2 {

    font-size: 52px;

  }

}

@media(max-width:768px) {

  .results {

    padding: 70px 0;

  }

  .results-content {

    padding: 40px 28px;

  }

  .results-text h2 {

    font-size: 38px;

  }

  .results-text p {

    font-size: 22px;

  }

  .results-image img {

    width: 260px;

  }

}

/*BENEFITS*/
.benefits {
  padding: 50px 0;
}

.benefits-list {
  max-width: 760px;
  margin-top: 50px;
}

.benefit-item {
  padding: 30px 0;
  border-bottom: 1px solid #D9DDE3;
}

.benefit-item:first-child {
  border-top: 1px solid #D9DDE3;
}

.benefit-item h3 {
  font-size: 28px;
  font-weight: 700;
  color: #4B5563;
  margin-bottom: 14px;
}

.benefit-item p {
  font-size: 18px;
  line-height: 1.45;
  color: #5F6B7A;
  max-width: 700px;
}

.benefit-item:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {

  .benefits {
    padding: 70px 0;
  }

  .benefits-list {
    margin-top: 40px;
  }

  .benefit-item h3 {
    font-size: 24px;
  }

  .benefit-item p {
    font-size: 17px;
  }

}

/*DOWNLOAD*/
.download {
  padding: 50px 0;
}

.download-card {

  position: relative;

  overflow: hidden;

  background: #FDBE21;

  border-radius: 32px;

  min-height: 540px;

  display: flex;
  align-items: center;

  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);

}

.download-content {

  position: relative;
  z-index: 2;

  max-width: 750px;

  padding: 80px;

}

.download-content h2 {

  color: #fff;

  font-size: 72px;

  line-height: 1.1;

  font-weight: 800;

  margin-bottom: 26px;

}

.download-content p {

  font-size: 28px;

  line-height: 1.4;

  color: #4B5563;

  margin-bottom: 42px;

}

.download-circle {

  position: absolute;

  width: 850px;
  height: 850px;

  border-radius: 50%;

  right: -430px;
  top: -160px;

  background: rgba(255, 255, 255, .28);

  animation: floatCircle 10s ease-in-out infinite;

}

@media(max-width:992px) {

  .download-card {

    min-height: auto;

  }

  .download-content {

    padding: 60px;

  }

  .download-content h2 {

    font-size: 54px;

  }

}

@media(max-width:768px) {

  .download {

    padding: 70px 0;

  }

  .download-card {

    border-radius: 24px;

  }

  .download-content {

    padding: 40px 28px;

  }

  .download-content h2 {

    font-size: 42px;

  }

  .download-content p {

    font-size: 22px;

  }

  .download-circle {

    width: 500px;
    height: 500px;

    right: -240px;
    top: -120px;

  }

}

/*FOOTER*/
.footer {
  padding: 70px 0 90px;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-link {

  width: fit-content;

  color: #4B5563;

  font-size: 20px;

  transition: .25s;

}

.footer-link:hover {

  color: #4897E7;

}

/* ===========================
   Legal pages
=========================== */

.legal-page {
  padding: 80px 0 100px;
}

.legal-card {
  max-width: 900px;
}

.legal-card h1 {
  font-size: 56px;
  font-weight: 800;
  color: #4B5563;
  line-height: 1.1;
  margin-bottom: 12px;
}

.last-updated {
  font-size: 18px;
  color: #7A8595;
  margin-bottom: 50px;
}

.legal-card h2 {
  font-size: 34px;
  font-weight: 700;
  color: #4B5563;
  margin-top: 55px;
  margin-bottom: 18px;
}

.legal-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #4B5563;
  margin-top: 28px;
  margin-bottom: 14px;
}

.legal-card p {
  font-size: 19px;
  line-height: 1.8;
  color: #5F6B7A;
  margin-bottom: 18px;
}

.legal-card strong {
  color: #4B5563;
}

.legal-card ul {
  margin: 18px 0 30px 28px;
}

.legal-card li {
  font-size: 19px;
  line-height: 1.8;
  color: #5F6B7A;
  margin-bottom: 10px;
}

.legal-card li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {

  .legal-page {
    padding: 50px 0 70px;
  }

  .legal-card h1 {
    font-size: 38px;
  }

  .legal-card h2 {
    font-size: 26px;
    margin-top: 42px;
  }

  .legal-card h3 {
    font-size: 20px;
  }

  .legal-card p,
  .legal-card li {
    font-size: 17px;
  }

}