@charset "UTF-8";
@font-face {
  font-family: "sfpro-regular";
  src: url("../fonts/sf_pro_regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "sfpro-regular";
  src: url("../fonts/sf_pro_regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "sfpro-medium";
  src: url("../fonts/sf_pro_medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "sfpro-bold";
  src: url("../fonts/sf_pro_bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.header {
  background: #000000;
  padding-top: 25px;
  position: relative;
}
.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .header .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 0 16px;
    gap: 12px;
  }
}
.header .nav-toggle {
  appearance: none;
  -webkit-appearance: none;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  position: relative;
  width: 28px;
  height: 22px;
  display: none;
  padding: 0;
  cursor: pointer;
  z-index: 20;
}
@media (max-width: 900px) {
  .header .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
  }
}
.header .nav-toggle-line {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: 0.25s ease;
}
.header .nav-toggle-line:nth-child(1) {
  top: 0;
}
.header .nav-toggle-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header .nav-toggle-line:nth-child(3) {
  bottom: 0;
}
.header .nav-toggle.is-active .nav-toggle-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header .nav-toggle.is-active .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
.header .nav-toggle.is-active .nav-toggle-line:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.header .cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #389BFF, #0064C9);
  color: #ffffff;
  font-size: 15px;
  font-family: "sfpro-medium";
  text-decoration: none;
  white-space: nowrap;
}
.header .cta:hover {
  background: #0064C9;
}
@media (max-width: 900px) {
  .header .cta {
    order: 2;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
  }
}
.header .nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .header .nav {
    display: none;
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
}
.header .nav.is-open {
  display: flex !important;
}
.header .nav a {
  font-family: "sfpro-medium";
  font-size: 16px;
  color: #AEAEAE;
  text-decoration: none;
}
.header .nav a:hover {
  color: #389BFF;
}
@media (max-width: 900px) {
  .header .nav a {
    font-size: 14px;
  }
}

.hero {
  padding: 60px 0;
  background: #000000;
  text-align: center;
}
.hero h1 {
  font-family: "sfpro-bold";
  font-size: 60px;
  color: #ffffff;
}
@media (min-width: 576px) and (max-width: 991px) {
  .hero h1 {
    font-size: 35px;
  }
}
@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 25px;
  }
}
.hero .hero-media {
  position: relative;
  display: inline-block;
  margin-top: 50px;
  width: 100%;
}
.hero .hero-media .hero-image {
  justify-items: center;
}
.hero .hero-media .hero-image .hero-img {
  display: block;
  width: 80%;
  max-width: 100%;
  height: auto;
}
.hero .partners {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(to bottom, transparent 0%, black 30%, black 100%);
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
}
@media (max-width: 576px) {
  .hero .partners {
    padding: 10px;
  }
}
.hero .partners .partner-logo {
  width: 95px;
  height: 95px;
  object-fit: contain;
  padding: 10px;
  max-width: calc(25% - 10px);
}
@media (min-width: 576px) and (max-width: 991px) {
  .hero .partners .partner-logo {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 575.98px) {
  .hero .partners .partner-logo {
    width: 70px;
    height: 70px;
  }
}
.hero .partnerships {
  margin-top: 80px;
}
.hero .partnerships h2 {
  margin: 20px 0;
  font-family: "sfpro-bold";
  font-size: 22px;
  color: #ffffff;
}
@media (max-width: 576px) {
  .hero .partnerships h2 {
    font-size: 20px;
  }
}
.hero .partnerships .partner-logo {
  margin-top: 20px;
  gap: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 576px) {
  .hero .partnerships .partner-logo {
    gap: 30px;
  }
}
.hero .partnerships .partner-logo img {
  width: 10%;
}
@media (max-width: 576px) {
  .hero .partnerships .partner-logo img {
    width: 20%;
  }
}

.feature-section {
  background: #000000;
  color: #ffffff;
  padding: 70px 0;
}
@media (max-width: 575.98px) {
  .feature-section {
    padding: 25px 20px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .feature-section {
    padding: 40px 0;
  }
}
.feature-section h2 {
  font-family: "sfpro-bold";
  font-size: 55px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 576px) and (max-width: 991px) {
  .feature-section h2 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .feature-section h2 {
    font-size: 25px;
  }
}
.feature-section .card-feature {
  border-radius: 25px;
  padding: 15px 20px 0 20px;
  background: radial-gradient(circle at top left, #080808, #1E1E1E);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.feature-section .card-feature .card-body {
  padding-bottom: 0;
}
.feature-section .card-feature .card-body .card-title {
  font-size: 40px;
  font-family: "sfpro-bold";
  color: #ffffff;
}
@media (min-width: 576px) and (max-width: 991px) {
  .feature-section .card-feature .card-body .card-title {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .feature-section .card-feature .card-body .card-title {
    font-size: 25px;
  }
}
.feature-section .card-feature .card-body .card-text {
  font-size: 18px;
  font-family: "sfpro-regular";
  color: #ffffff;
}
.feature-section .card-feature .card-body .card-img-wrapper {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.feature-section .card-feature .card-body .card-img-wrapper img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
}
.feature-section .card-blue {
  background: linear-gradient(180deg, #389BFF 0%, #0064C9 100%);
}
.feature-section .card-wide {
  padding: 35px 40px;
  background: radial-gradient(circle at top left, #080808, #1E1E1E);
  border-radius: 25px;
  color: #ffffff;
}
.feature-section .card-wide .card-body {
  padding: 0;
}
.feature-section .card-wide .loyalty-top {
  margin-bottom: 24px;
}
.feature-section .card-wide .points-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 12px;
}
.feature-section .card-wide .points-label {
  font-size: 22px;
  font-weight: 700;
}
.feature-section .card-wide .points-scale {
  display: flex;
  gap: 32px;
  font-size: 13px;
  color: #ffffff;
  opacity: 0.8;
}
.feature-section .card-wide .points-scale span {
  min-width: 32px;
  text-align: center;
}
@media (max-width: 576px) {
  .feature-section .card-wide .points-scale {
    gap: 20px;
  }
  .feature-section .card-wide .points-scale span {
    min-width: auto;
  }
}
.feature-section .card-wide .points-bar {
  margin: 12px 0 24px;
  position: relative;
}
.feature-section .card-wide .points-bar .line {
  height: 6px;
  background: #ffffff;
  border-radius: 999px;
  position: relative;
}
.feature-section .card-wide .points-bar .progress {
  height: 100%;
  width: 60%;
  background: #389BFF;
  border-radius: 999px;
  position: relative;
}
.feature-section .card-wide .points-bar .progress::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-radius: 50%;
  border: 3px solid #389BFF;
  box-shadow: 0 0 0 4px rgba(56, 155, 255, 0.4);
}
.feature-section .card-wide .points-bar .points-scale {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.9;
}
.feature-section .card-wide .points-bar .points-ticks {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
}
.feature-section .card-wide .points-bar .points-ticks span {
  width: 2px;
  height: 12px;
  background: #ffffff;
  opacity: 0.5;
  border-radius: 999px;
}
.feature-section .card-wide .line {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: #ffffff;
  overflow: visible;
}
.feature-section .card-wide .progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60%;
  background: #389BFF;
  border-radius: inherit;
}
.feature-section .card-wide .progress::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #389BFF;
  box-shadow: 0 0 0 4px rgba(56, 155, 255, 0.4);
}
.feature-section .card-wide .dots {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.feature-section .card-wide .dots span {
  width: 2px;
  height: 10px;
  background: #ffffff;
  border-radius: 999px;
  opacity: 0.7;
}
.feature-section .card-wide .points-hint {
  margin-top: 6px;
  font-size: 13px;
  color: #FFEA00;
  font-weight: 600;
}
.feature-section .card-wide .loyalty-bottom {
  margin-top: 18px;
}
.feature-section .card-wide .loyalty-text .card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.feature-section .card-wide .loyalty-text .card-text {
  font-size: 15px;
  color: #AEAEAE;
  line-height: 1.5;
  max-width: 420px;
}
.feature-section .card-wide .loyalty-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}
.feature-section .card-wide .loyalty-image img {
  max-width: 100%;
  width: 320px;
  height: auto;
}
@media (max-width: 992px) {
  .feature-section .card-wide .loyalty-image {
    margin-top: 20px;
    justify-content: flex-start;
  }
}

.dashboard {
  background: #080808;
  color: #ffffff;
  padding: 70px 0;
}
@media (max-width: 575.98px) {
  .dashboard {
    padding: 25px 20px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .dashboard {
    padding: 40px 0;
  }
}
.dashboard .dashboard-header {
  text-align: center;
  margin: 0 auto 48px;
}
.dashboard .dashboard-header h2 {
  font-family: "sfpro-bold";
  font-size: 55px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .dashboard .dashboard-header h2 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .dashboard .dashboard-header h2 {
    font-size: 25px;
  }
}
.dashboard .dashboard-header p {
  font-size: 18px;
  margin: 0;
}
.dashboard .dashboard-image {
  max-width: 820px;
  margin: 0 auto 56px;
}
.dashboard .dashboard-image img {
  width: 100%;
  height: auto;
  display: block;
}
.dashboard .dashboard-items {
  max-width: 900px;
  margin: 0 auto;
}
.dashboard .dashboard-items .row > [class*=col-] {
  margin-bottom: 32px;
}
.dashboard .dashboard-item {
  text-align: left;
}
.dashboard .dashboard-item .dashboard-icon {
  margin-bottom: 12px;
}
.dashboard .dashboard-item .dashboard-icon img {
  width: 32px;
  height: 32px;
  display: block;
}
.dashboard .dashboard-item h3 {
  font-size: 18px;
  font-family: "sfpro-bold";
  margin-bottom: 10px;
}
.dashboard .dashboard-item p {
  font-size: 14px;
  margin: 0;
}

.organize {
  background: #000000;
  padding: 70px 0;
}
@media (max-width: 575.98px) {
  .organize {
    padding: 25px 20px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .organize {
    padding: 40px 0;
  }
}
.organize .card {
  background: #080808;
  border-top: 1px solid #1E1E1E;
  border-radius: 32px;
  padding: 64px 56px;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .organize .card {
    padding: 40px 24px 32px;
  }
}
.organize .card h3 {
  color: #FF5A5B;
  font-size: 16px;
  font-family: "sfpro-bold";
  text-transform: uppercase;
  margin-bottom: 16px;
}
.organize .card h2 {
  color: #ffffff;
  font-size: 54px;
  font-family: "sfpro-bold";
  margin-bottom: 45px;
}
@media (max-width: 768px) {
  .organize .card h2 {
    font-size: 26px;
    margin-bottom: 25px;
  }
}
.organize .card .tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .organize .card .tags {
    gap: 12px;
    margin-top: 5px;
  }
}
.organize .card .tags > div {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 10px 25px;
  background: #1E1E1E;
  border-radius: 20px;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .organize .card .tags > div {
    transform: none !important;
    width: 100%;
    justify-content: flex-start;
  }
}
.organize .card .tags > div p {
  font-size: 24px;
  font-family: "sfpro-bold";
  margin: 0;
}
@media (max-width: 768px) {
  .organize .card .tags > div p {
    font-size: 18px;
  }
}
.organize .card .tags > div .dot {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .organize .card .tags > div .dot {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    flex-shrink: 0;
  }
}
.organize .card .tags > div:nth-child(1) {
  transform: rotate(-10deg);
}
.organize .card .tags > div:nth-child(2) {
  transform: rotate(-5deg);
}
.organize .card .tags > div:nth-child(3) {
  transform: rotate(3deg);
}
.organize .card .tags > div:nth-child(4) {
  transform: rotate(0deg);
}
.organize .card .tags > div:nth-child(5) {
  transform: rotate(5deg);
}
.organize .card .tags > div:nth-child(6) {
  transform: rotate(-3deg);
}
.organize .card .tags .purple .dot {
  background: #D690FA;
}
.organize .card .tags .green .dot {
  background: #68D152;
}
.organize .card .tags .blue .dot {
  background: #389BFF;
}
.organize .card .tags .yellow .dot {
  background: #FFEA00;
}
.organize .card .tags .red .dot {
  background: #FF5A5B;
}
.organize .card .tags .pink .dot {
  background: #FF71B7;
}

.testimonials {
  background: #000000;
  color: #ffffff;
  padding: 70px 0;
}
@media (max-width: 575.98px) {
  .testimonials {
    padding: 25px 20px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .testimonials {
    padding: 40px 0;
  }
}
.testimonials .testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials .testimonials-header h2 {
  font-family: "sfpro-bold";
  font-size: 55px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .testimonials .testimonials-header h2 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .testimonials .testimonials-header h2 {
    font-size: 25px;
  }
}
.testimonials .testimonials-slider {
  display: flex;
  align-items: flex-start;
  overflow: visible;
}
.testimonials .testimonial-card {
  background: radial-gradient(circle at top left, #080808, #1E1E1E);
  border-radius: 25px;
  padding: 25px 30px;
  max-width: 420px;
  margin: 0 16px;
  display: flex !important;
  flex-direction: column;
  min-height: 240px;
  transition: transform 0.3s ease;
}
.testimonials .testimonial-card:nth-child(even) {
  transform: translateY(40px);
}
@media (max-width: 991px) {
  .testimonials .testimonial-card:nth-child(even) {
    transform: none;
  }
}
.testimonials .testimonial-card .testimonial-top {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.testimonials .testimonial-card .testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
}
.testimonials .testimonial-card .testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonials .testimonial-card .testimonial-meta .testimonial-name {
  font-size: 18px;
  font-family: "sfpro-medium";
}
.testimonials .testimonial-card .testimonial-meta .testimonial-role {
  font-size: 16px;
  color: #AEAEAE;
}
.testimonials .testimonial-card .testimonial-meta p {
  font-size: 16px;
  font-family: "sfpro-regular";
  margin-bottom: 18px;
}
.testimonials .testimonial-card .testimonial-brand {
  text-align: center;
  justify-items: center;
  margin-top: 20px;
}
.testimonials .testimonial-card .testimonial-brand img {
  width: 25%;
}
.testimonials .slick-list {
  padding-bottom: 70px !important;
}

.pricing {
  background: #000000;
  color: #ffffff;
  padding: 70px 0;
}
@media (max-width: 575.98px) {
  .pricing {
    padding: 25px 20px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .pricing {
    padding: 40px 0;
  }
}
.pricing .pricing-header {
  text-align: center;
  margin-bottom: 56px;
}
.pricing .pricing-header h2 {
  font-family: "sfpro-bold";
  font-size: 55px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 576px) and (max-width: 991px) {
  .pricing .pricing-header h2 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .pricing .pricing-header h2 {
    font-size: 25px;
  }
}
.pricing .pricing-header .pricing-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 4px;
  border: 1px solid #2a2a2a;
  margin: 0 auto 8px;
}
.pricing .pricing-header .toggle-btn {
  border: none;
  background: transparent;
  color: #ffffff;
  padding: 7px 26px;
  font-size: 15px;
  font-family: "sfpro-medium";
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.pricing .pricing-header .toggle-btn.is-active {
  background: linear-gradient(90deg, #389BFF, #0064C9);
  color: #ffffff;
}
.pricing .pricing-header .pricing-hint {
  font-size: 13px;
  color: #389BFF;
  margin-top: 8px;
}
.pricing .pricing-cards .row > [class*=col-] {
  margin-bottom: 24px;
}
.pricing .pricing-cards .row .pricing-card {
  background: radial-gradient(circle at top left, #080808, #1E1E1E);
  border-radius: 25px;
  padding: 25px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pricing .pricing-cards .row .pricing-card .pricing-title {
  font-size: 32px;
  font-family: "sfpro-bold";
  margin-bottom: 25px;
}
@media (min-width: 576px) and (max-width: 991px) {
  .pricing .pricing-cards .row .pricing-card .pricing-title {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .pricing .pricing-cards .row .pricing-card .pricing-title {
    font-size: 25px;
  }
}
.pricing .pricing-cards .row .pricing-card .pricing-subtitle {
  font-size: 16px;
  font-family: "sfpro-regular";
  margin-bottom: 20px;
}
.pricing .pricing-cards .row .pricing-card .pricing-divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 18px;
}
.pricing .pricing-cards .row .pricing-card .pricing-price {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}
@media (min-width: 576px) and (max-width: 991px) {
  .pricing .pricing-cards .row .pricing-card .pricing-price {
    font-size: 25px;
  }
}
@media (max-width: 576px) {
  .pricing .pricing-cards .row .pricing-card .pricing-price {
    font-size: 22px;
  }
}
.pricing .pricing-cards .row .pricing-card .pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.pricing .pricing-cards .row .pricing-card .pricing-features .pricing-feature {
  position: relative;
  font-size: 16px;
  font-family: "sfpro-regular";
  padding-left: 24px;
  margin-bottom: 8px;
}
.pricing .pricing-cards .row .pricing-card .pricing-features .pricing-feature::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 15px;
  height: 15px;
  color: #389BFF;
}
.pricing .pricing-cards .row .pricing-card .pricing-btn {
  margin-top: auto;
  border: none;
  width: 100%;
  max-width: 180px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #389BFF, #0064C9);
  color: #ffffff;
  font-size: 15px;
  font-family: "sfpro-medium";
  cursor: pointer;
  align-self: flex-start;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pricing .pricing-cards .row .pricing-card .pricing-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.contact {
  background: #000000;
  color: #ffffff;
  padding: 70px 0;
}
@media (max-width: 575.98px) {
  .contact {
    padding: 25px 20px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .contact {
    padding: 40px 0;
  }
}
.contact .contact-image {
  background: linear-gradient(135deg, #389BFF, #0064C9);
  border-radius: 32px;
  padding: 30px 25px 0 25px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 24px;
}
.contact .contact-image img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
}
.contact .contact-content p {
  font-size: 19px;
  font-family: "sfpro-regular";
  margin-bottom: 20px;
}
.contact .contact-content .contact-btn {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #389BFF, #0064C9);
  color: #ffffff;
  font-size: 15px;
  font-family: "sfpro-medium";
  text-decoration: none;
  white-space: nowrap;
}
.contact .contact-content:hover {
  background: #0064C9;
}
.contact .contact-content .contact-btn-icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.faq {
  background: #000000;
  color: #ffffff;
  padding: 70px 0;
}
@media (max-width: 575.98px) {
  .faq {
    padding: 25px 20px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .faq {
    padding: 40px 0;
  }
}
.faq h2 {
  font-family: "sfpro-bold";
  font-size: 55px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .faq h2 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .faq h2 {
    font-size: 25px;
  }
}
.faq .faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq .faq-list .faq-item {
  background: radial-gradient(circle at top left, #080808, #1E1E1E);
  border-radius: 25px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: background 0.2s ease;
  padding: 10px 0;
}
.faq .faq-list .faq-item.is-open {
  background: radial-gradient(circle at top left, #080808, #1E1E1E);
  border-radius: 25px;
}
.faq .faq-list .faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  border-color: #ffffff;
}
.faq .faq-list .faq-item.is-open .faq-icon::before, .faq .faq-list .faq-item.is-open .faq-icon::after {
  background: #ffffff;
}
.faq .faq-list .faq-item.is-open .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding-bottom: 12px;
}
.faq .faq-list .faq-item .faq-question {
  width: 100%;
  padding: 15px 25px;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 23px;
  font-family: "sfpro-medium";
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}
@media (max-width: 576px) {
  .faq .faq-list .faq-item .faq-question {
    font-size: 18px;
  }
}
.faq .faq-list .faq-item .faq-question span:first-child {
  flex: 1 1 auto;
}
.faq .faq-list .faq-item .faq-question .faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 auto;
  margin-left: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.faq .faq-list .faq-item .faq-question .faq-icon::before, .faq .faq-list .faq-item .faq-question .faq-icon::after {
  content: "";
  position: absolute;
  background: #ffffff;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 1.5px;
  transition: background 0.2s ease;
}
.faq .faq-list .faq-item .faq-question .faq-icon::before {
  transform: translateX(-2px) rotate(45deg);
}
.faq .faq-list .faq-item .faq-question .faq-icon::after {
  transform: translateX(2px) rotate(-45deg);
}
.faq .faq-list .faq-item .faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 22px;
  padding-bottom: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease, padding-bottom 0.25s ease;
}
.faq .faq-list .faq-item .faq-answer p {
  font-size: 16px;
  color: #ffffff;
  margin: 0 0 14px;
}

.footer {
  background: #000000;
  color: #ffffff;
  padding: 70px 0;
  font-size: 16px;
  font-family: "sfpro-regular";
}
@media (max-width: 575.98px) {
  .footer {
    padding: 25px 20px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .footer {
    padding: 40px 0;
  }
}
.footer a {
  text-decoration: none;
  color: #ffffff;
}
.footer a:hover {
  color: #389BFF;
}
.footer .footer-top {
  margin-bottom: 40px;
}
.footer .footer-top .footer-location {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}
.footer .footer-top .footer-location .footer-city {
  font-size: 40px;
  font-family: "sfpro-bold";
}
@media (max-width: 575.98px) {
  .footer .footer-top .footer-location .footer-city {
    font-size: 30px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .footer .footer-top .footer-location .footer-city {
    font-size: 35px;
  }
}
.footer .footer-top .footer-location .footer-time {
  font-size: 40px;
  font-family: "sfpro-bold";
  color: #389BFF;
}
@media (max-width: 575.98px) {
  .footer .footer-top .footer-location .footer-time {
    font-size: 30px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .footer .footer-top .footer-location .footer-time {
    font-size: 35px;
  }
}
.footer .footer-middle {
  display: flex;
  gap: 40px;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .footer .footer-middle {
    flex-direction: column;
    gap: 20px;
  }
}
.footer .footer-middle .footer-block h3 {
  font-size: 26px;
  font-family: "sfpro-medium";
  margin-bottom: 6px;
}
@media (max-width: 991px) {
  .footer .footer-middle .footer-block h3 {
    font-size: 22px;
  }
}
.footer .footer-middle .footer-block p {
  font-size: 16px;
  margin: 0;
}
.footer .footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .footer .footer-right {
    align-items: flex-start;
  }
}
.footer .footer-up {
  font-size: 13px;
}
.footer .footer-up:hover {
  color: #389BFF;
}
.footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer .footer-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.footer .footer-bottom {
  padding-top: 18px;
  font-size: 15px;
}
.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer .footer-copy {
  text-align: right;
}
@media (max-width: 767.98px) {
  .footer .footer-copy {
    margin-top: 12px;
    text-align: left;
  }
}

/*# sourceMappingURL=main.css.map */
