@font-face {
  font-family: 'Gotham';
  src: url('/fonts/gothamrnd_light.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('/fonts/gothamrnd_book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('/fonts/gothamrnd_medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('/fonts/gothamrnd_bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body,
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
  font-family: 'Gotham', 'Arial', sans-serif;
}

a {
  -webkit-tap-highlight-color: transparent;
}

.main-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}

.top-blur {
  position: fixed;
  z-index: 98;
  top: 0;
  height: 100px;
  width: 100vw;
  rotate: 180deg;
}

.bottom-blur {
  position: fixed;
  z-index: 98;
  bottom: 0;
  height: 100px;
  width: 100vw;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 80px;
}

.text-center {
  text-align: center;
}

.btn-section {
  display: flex;
  align-items: center;
  padding: 8px 15px;
  background-color: #f8f5ff;
  width: fit-content;
  border-radius: 1000px;
  border: 2px solid #efe9ff;
}

.btn-section span {
  margin-left: 5px;
  font-size: 18px;
  color: #a68bfa;
}

.padding-top-max {
  padding-top: 120px;
}

.padding-top-medium {
  padding-top: 75px;
}

@media (max-width: 1100px) {
  .container {
    padding: 0 60px;
  }
}

@media (max-width: 1000px) {
  .container {
    padding: 0 50px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 500px) {
  .container {
    padding: 0 20px;
  }
}

/** -------------------- NAVBAR -------------------- **/

.navbar {
  position: fixed;
  z-index: 99;
  width: 100%;
  max-width: 900px;
  background-color: rgb(255, 255, 255, 0.98);
  padding: 16px;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  border-radius: 24px;
  border: 1px solid #dedce3;
}

.navbar-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-block div > a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 12px;
  margin-left: 10px;
  color: #171717;
}

.navbar-block > a {
  display: flex;
  align-items: flex-end;
  padding: 16px 28px;
  background-color: #9e81f6;
  text-decoration: none;
  color: #fff;
  border-radius: 16px;
  border-top: 1px solid #8b62fe;
  border-right: 1px solid #8b62fe;
  border-bottom: 4px solid #8b62fe;
  border-left: 1px solid #8b62fe;
}

.navbar-logo > a {
  text-decoration: none;
}

@media (max-width: 900px) {
  .navbar {
    max-width: 700px;
  }
}

@media (max-width: 700px) {
  .navbar {
    max-width: 500px;
  }

  .navbar-block .navbar-tools {
    display: none;
  }
}

@media (max-width: 540px) {
  .navbar {
    max-width: 450px;
  }
}

@media (max-width: 450px) {
  .navbar {
    max-width: 400px;
  }
}

/** -------------------- HERO -------------------- **/

.hero {
  height: 1140px;
  background-image: url('/icons/Background.png');
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 80px;
}

.hero-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 972px;
  gap: 24px;
}

.hero-block h1 {
  font-size: 64px;
  margin-bottom: 0;
  font-weight: 700;
}

.hero-block span {
  color: #8b62fe;
}

.hero-block p {
  max-width: 700px;
  font-size: 20px;
  color: #908d95;
  margin: 0;
}

.hero-store a {
  margin-left: 6px;
  margin-right: 6px;
  text-decoration: none;
}

.hero-store a > img {
  border-radius: 10px;
  box-shadow: 0 0 10px #dedce3;
}

.hero-phones-img {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.hero-image-phones {
  max-width: 1400px;
}

.hero-image-blur {
  position: absolute;
  bottom: 0;
  height: 200px;
  width: 100vw;
}

@media (max-width: 1400px) {
  .hero-image-phones {
    max-width: 1100px;
  }

  .hero-image-blur {
    height: 150px;
  }

  .hero {
    height: 1000px;
  }
}

@media (max-width: 1100px) {
  .hero-image-phones {
    max-width: 800px;
  }

  .hero-image-blur {
    height: 120px;
  }

  .hero {
    height: 844px;
    overflow: hidden;
  }
}

@media (max-width: 850px) {
  .hero-block {
    max-width: 600px;
  }

  .hero-block h1 {
    font-size: 50px;
    font-weight: 700;
  }
}

@media (max-width: 700px) {
  .hero-block {
    max-width: 400px;
  }

  .hero-block h1 {
    font-size: 40px;
    font-weight: 700;
  }

  .hero-block p {
    max-width: 300px;
    font-size: 16px;
  }
}

/** -------------------- SECOND -------------------- **/

.second-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  gap: 24px;
  margin-bottom: 64px;
}

.second-block h2 {
  font-size: 52px;
  margin: 0;
  font-weight: 500;
}

.second-block p {
  max-width: 650px;
  font-size: 20px;
  color: #908d95;
  margin: 0;
}

.second-cards {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 24px;
}

.second-cards-inner {
  max-width: 628px;
  border-radius: 16px;
  overflow: hidden;
  border-style: solid;
  border-width: 2px 2px 5px 2px; /* top right bottom left */
  border-color: #dedce3;
}

.second-cards-inner-div {
  padding: 24px 30px;
}

.second-cards-inner-div h3 {
  margin: 0;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 500;
}

.second-cards-inner-div p {
  margin: 0;
  font-size: 16px;
  color: #908d95;
}

.second-cards-inner2 {
  max-width: 410px;
  border-radius: 16px;
  overflow: hidden;
  border-style: solid;
  border-width: 2px 2px 5px 2px; /* top right bottom left */
  border-color: #dedce3;
}

@media (max-width: 1440px) {
  .second-cards {
    justify-content: space-evenly;
  }

  .second-cards-inner {
    max-width: 500px;
  }

  .second-cards-inner2 {
    max-width: 300px;
  }

  .second-cards-inner > img {
    width: 100%;
    height: 270px;
    object-fit: cover;
  }

  .second-cards-inner2 > img {
    width: 100%;
    height: 270px;
    object-fit: cover;
  }
}

@media (max-width: 1200px) {
  .second-block h2 {
    font-size: 30px;
    font-weight: 500;
  }

  .second-block p {
    max-width: 650px;
    font-size: 18px;
  }

  .second-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .second-cards-inner2 {
    max-width: 498px;
  }

  .second-cards-inner > img,
  .second-cards-inner2 > img {
    width: 100%;
    height: 270px;
    object-fit: cover;
  }
}

/** -------------------- THIRD -------------------- **/

.third-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 750px;
  gap: 24px;
  margin-bottom: 64px;
}

.third-block h2 {
  font-size: 52px;
  font-weight: 500;
  margin: 0;
}

.third-block p {
  max-width: 650px;
  font-size: 20px;
  color: #908d95;
  margin: 0;
}

.third-cards {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.third-card-one-phone {
  border-radius: 70px;
}

.third-card-one-phone-1 {
  display: none;
  border-radius: 50px;
  box-shadow: 0px 30px 60px #d8d8d9;
}

.third-cards-wrapper {
  width: 100%;
  max-width: 411px;
}

.third-cards-wrapper-div {
  padding: 32px;
  border-style: solid;
  border-width: 2px 2px 5px 2px; /* top right bottom left */
  border-color: #dedce3;
  border-radius: 20px;
  margin-top: 26px;
}

.third-cards-wrapper-div img {
  width: 48px;
  height: 48px;
}

.third-cards-wrapper-div h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 10px 0;
}

.third-cards-wrapper-div p {
  margin: 0;
  font-size: 18px;
  color: #908d95;
}

@media (max-width: 980px) {
  .third-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .third-cards-wrapper-div {
    margin-top: 0;
    margin-bottom: 12px;
    padding: 20px;
  }

  .third-block h2 {
    font-size: 30px;
  }

  .third-block p {
    font-size: 18px;
  }

  .third-cards-wrapper-div p {
    font-size: 16px;
  }

  .third-card-one-phone {
    display: none;
  }

  .third-card-one-phone-1 {
    display: block;
    margin-bottom: 26px;
  }
}

/** -------------------- FOUR -------------------- **/

.four-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  gap: 24px;
  margin-bottom: 64px;
}

.four-block h2 {
  font-size: 52px;
  font-weight: 500;
  margin: 0;
}

.four-block p {
  max-width: 800px;
  font-size: 20px;
  color: #908d95;
  margin: 0;
}

.four-block-feedback {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 420px;
  align-items: center;
  padding: 8px 8px 8px 16px;
  background-color: #fff;
  box-shadow: 0 0 150px #a797d3;
  border-style: solid;
  border-width: 1px 1px 4px 1px;
  border-color: #d2c2ff;
  border-radius: 99px;
  margin-top: 50px;
}

.four-block-feedback span {
  font-size: 18px;
  font-weight: 500;
}

.four-block-feedback p {
  margin: 0;
  color: #fff;
  margin-right: 14px;
  font-size: 14px;
  font-weight: 500;
}

.four-block-feedback a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  background-color: #9e81f6;
  border-radius: 99px;
  text-decoration: none;
  border-top: 1px solid #8b62fe;
  border-right: 1px solid #8b62fe;
  border-bottom: 4px solid #8b62fe;
  border-left: 1px solid #8b62fe;
}

.four-block-result {
  display: flex;
  width: 100%;
  max-width: 420px;
  align-items: center;
  justify-content: space-evenly;
}

.four-block-result span {
  display: flex;
  align-items: center;
}

.four-block-result span > p {
  margin: 0;
  font-size: 16px;
  margin-left: 10px;
  color: #171717;
}

@media (max-width: 800px) {
  .four-block {
    margin-bottom: 30px;
  }

  .four-block h2 {
    font-size: 30px;
  }

  .four-block p {
    font-size: 18px;
  }
}

@media (max-width: 430px) {
  .four-block-feedback a {
    padding: 13px;
  }
}

/** -------------------- CALL-TO-ACTION 2 -------------------- **/

.container-call-to-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 56px;
}

.call-to-action-block2 {
  position: relative;
  width: 100%;
  background-color: #a787fe;
  display: flex;
  border-radius: 36px;
  border-top: 4px solid #d2c2ff;
  border-right: 4px solid #d2c2ff;
  border-bottom: 12px solid #d2c2ff;
  border-left: 4px solid #d2c2ff;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  z-index: 3;
  margin: 80px 64px;
  max-width: 660px;
  color: #fff;
  left: 0;
}

.call-to-action-block2 > img {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.cta-inner-img {
  position: absolute;
  right: 52px;
  top: 68px;
  z-index: 2;
}

.cta-inner-img img {
  max-width: 400px;
}

.cta-inner h2 {
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 52px;
  font-weight: 500;
}

.cta-inner p {
  margin-bottom: 48px;
  font-weight: 400;
}

.cta-inner-store a {
  display: inline-block;
  padding: 12px 17px;
  background-color: rgb(23, 23, 23, 0.2);
  text-decoration: none;
  border-radius: 12px;
  margin-right: 12px;
}

@media (max-width: 1300px) {
  .cta-inner {
    margin: 40px 32px;
  }

  .cta-inner-img {
    right: 20px;
    top: 28px;
  }

  .cta-inner-img img {
    max-width: 350px;
  }
}

@media (max-width: 1180px) {
  .cta-inner {
    max-width: 530px;
  }

  .cta-inner .btn-section {
    padding: 4px 8px;
  }

  .cta-inner .btn-section span {
    font-size: 16px;
  }

  .cta-inner-img img {
    max-width: 350px;
  }

  .cta-inner h2 {
    font-size: 42px;
  }

  .cta-inner p {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

@media (max-width: 1050px) {
  .cta-inner-img img {
    max-width: 250px;
  }
}

@media (max-width: 950px) {
  .cta-inner {
    max-width: 400px;
  }

  .cta-inner-img img {
    max-width: 250px;
  }
}

@media (max-width: 800px) {
  .cta-inner {
    max-width: 350px;
  }

  .cta-inner-img img {
    max-width: 200px;
  }

  .cta-inner h2 {
    font-size: 32px;
  }

  .cta-inner-store a {
    margin-right: 0px;
  }

  .cta-inner-store a > img {
    width: 136px;
  }
}

@media (max-width: 730px) {
  .container-call-to-action {
    padding: 0 20px;
  }

  .call-to-action-block2 {
    flex-direction: column;
  }

  .cta-inner {
    margin: 30px 16px 700px 16px;
    max-width: 100%;
  }

  .cta-inner-store a {
    display: block;
    text-align: center;
    margin-bottom: 12px;
  }

  .cta-inner-store a > img {
    width: 160px;
  }

  .cta-inner h2 {
    font-size: 48px;
  }

  .cta-inner p {
    font-size: 18px;
  }

  .cta-inner-img {
    width: 100%;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 44%);
    text-align: center;
  }

  .cta-inner-img img {
    max-width: 400px;
  }
}

@media (max-width: 540px) {
  .cta-inner {
    margin-bottom: 500px;
  }

  .cta-inner-img {
    transform: translate(-50%, 53%);
  }

  .cta-inner-img img {
    max-width: 360px;
  }
}

@media (max-width: 470px) {
  .cta-inner {
    margin-bottom: 500px;
  }
}

@media (max-width: 440px) {
  .cta-inner-img img {
    max-width: 330px;
  }
}

/** -------------------- FOOTER-BLOCK -------------------- **/

.footer {
  margin-bottom: 100px;
}

.footer-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.footer-block div {
  display: flex;
}

.footer-block div > a {
  display: flex;
  align-items: center;
  margin-left: 40px;
  text-decoration: none;
}

.footer-block div > a > p {
  margin-right: 5px;
  color: #908d95;
  font-size: 20px;
  font-weight: 500;
}

.hr {
  width: 100%;
  border: 2px solid #ecebf0;
}

.copyright {
  color: #908d95;
  font-weight: 500;
  font-size: 14px;
}

@media (max-width: 680px) {
  .footer-block {
    flex-direction: column;
  }

  .footer-block div > a {
    margin-left: 0;
    margin-right: 12px;
  }

  .footer-block div {
    margin-top: 10px;
  }

  .footer-block div > a > p {
    margin-right: 0px;
    font-size: 16px;
  }
}

/** -------------------- FAQs -------------------- **/

:root {
  --bg: #f5f5fb;
  --card-bg: #ffffff;
  --card-bg-active: #f3ecff;
  --border: #e1ddf6;
  --primary: #9e81f6;
  --primary-soft: #e3d5ff;
  --text-main: #15141f;
  --text-muted: #6c6a7f;
  --radius-lg: 18px;
  --shadow-soft: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.faq-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 750px;
  gap: 24px;
  margin-bottom: 64px;
}

.faq-block h2 {
  font-size: 52px;
  font-weight: 500;
  margin: 0;
}

.faq-block p {
  max-width: 650px;
  font-size: 20px;
  color: #908d95;
  margin: 0;
}

.faq-wrapper {
  max-width: 980px;
  width: 100%;
}

/* Tabs */

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.tabs-inner {
  background: #ffffff;
  border-radius: 16px;
  padding: 4px;
  display: inline-flex;
  gap: 4px;
  border-style: solid;
  border-width: 1px 1px 4px 1px; /* top right bottom left */
  border-color: #dedce3;
}

.tab-btn {
  position: relative;
  border: none;
  outline: none;
  padding: 10px 38px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  transition: 0.18s ease-out;
  border-style: solid;
  border-width: 1px 1px 4px 1px; /* top right bottom left */
  border-color: transparent;
}

.tab-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-soft);
  border-style: solid;
  border-width: 1px 1px 4px 1px; /* top right bottom left */
  border-color: #8b62fe;
}

/* Panels */

.tab-panel {
  display: none;
  animation: fadeIn 0.25s ease-out;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* GENERAL TAB: 2 independent columns */

.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: flex-start;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 640px) {
  .faq-columns {
    grid-template-columns: 1fr;
  }
}

/* H2 TAB grid */

.faq-grid {
  display: grid;
  gap: 18px;
  align-items: flex-start;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 820px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Accordion cards (details) */

details.faq-item {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  list-style: none;
  position: relative;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    transform 0.08s ease-out;
  cursor: pointer;
  border-style: solid;
  border-width: 2px 2px 5px 2px; /* top right bottom left */
  border-color: #dedce3;
}

details.faq-item[open] {
  background: var(--card-bg-active);
  border-color: var(--primary-soft);
  transform: translateY(-1px);
  border-style: solid;
  border-width: 2px 2px 5px 2px; /* top right bottom left */
  border-color: #d2c2ff;
}

details.faq-item summary {
  list-style: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

/* Remove default marker */
details.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  transition: transform 0.2s ease-out, background 0.2s ease,
    border-color 0.2s ease;
}

details.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-item span {
  font-size: 18px;
  font-weight: 500;
}

.faq-body {
  margin: 0 18px 18px 18px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

.faq-body ul {
  margin: 6px 0 0;
  padding-left: 18px;
}

.faq-body li {
  margin-bottom: 4px;
}
