*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  font-family: "Rubik", sans-serif;
}
header {
  position: absolute;
  width: 100%;
  z-index: 99;
}
header > div {
  max-width: 1320px;
  margin: 0 auto;
}
body.scrolled header {
  position: fixed;
  background-color: white;
  z-index: 999;
  box-shadow: 0px 0px 11px 8px rgba(0, 0, 0, 0.22);
  animation: slideDown 0.3s ease forwards;
}
body.header-solid header {
  position: fixed;
  background-color: white;
  z-index: 999;
  box-shadow: 0px 0px 11px 8px rgba(0, 0, 0, 0.22);
}
body.header-solid .header-placeholder {
  height: 100px;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header-inner {
  display: flex;
  align-items: center;
  padding: 20px 0;
  justify-content: space-between;
}
body.scrolled header .logo,
body.header-solid header .logo {
  display: inline-block;
}
header .logo,
body.scrolled header .logo-white,
body.header-solid header .logo-white {
  display: none;
}
header .logo,
header .logo-white {
  width: 250px;
}
ul.main-menu {
  background-color: white;
  list-style: none;
  display: flex;
  border-radius: 50px;
  padding: 4px;
  border: solid 3px #ffa0a5;
}
ul.main-menu li {
  position: relative;
}
ul.main-menu li ul {
  position: absolute;
  min-width: 320px;
  background-color: white;
  list-style: none;
  border-radius: 20px;
  padding: 10px;
  display: none;
  opacity: 0;
  transition: all 0.5s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* Submenu feature header */
.submenu-header {
  padding: 0 !important;
  margin-bottom: 6px;
}
.submenu-feature {
  padding: 16px 16px 14px;
  border-bottom: 1px solid #eef2f6;
  margin-bottom: 4px;
  background: #f6f9fc;
  border-radius: 12px 12px 0 0;
}
.submenu-feature-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
}
.submenu-feature-title {
  font-size: 15px;
  font-weight: 600;
  color: #4479a2;
  margin: 0 0 5px;
}
.submenu-feature-desc {
  font-size: 12px;
  color: #5d7079;
  line-height: 1.6;
  margin: 0;
}
ul.main-menu li:hover ul {
  display: block;
  opacity: 1;
}
ul.main-menu li ul li {
  padding: 0px;
}
ul.main-menu li a {
  text-decoration: none;
  color: #0c314b;
  padding: 15px 30px;
  display: block;
  border-radius: 50px;
  transition: all 0.5s ease;
}
ul.main-menu > li > a:hover,
ul.main-menu li.active > a,
ul.main-menu li.current-menu-item > a,
ul.main-menu li.current-menu-ancestor > a {
  background-color: #e9e9e9;
}

/* Submenu item hover — richer treatment */
ul.main-menu li ul li:not(.submenu-header) a {
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: #042c4c;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
ul.main-menu li ul li:not(.submenu-header) a::before {
  content: "›";
  font-size: 18px;
  line-height: 1;
  color: #4479a2;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
ul.main-menu li ul li:not(.submenu-header) a:hover {
  background-color: #f0f3f6;
  color: #042c4c;
}
ul.main-menu li ul li:not(.submenu-header) a:hover::before {
  transform: translateX(2px);
}
ul.user-menu {
  list-style: none;
  display: flex;
}
ul.user-menu li a {
  text-decoration: none;
  padding: 15px 30px;
  display: block;
  border-radius: 50px;
  transition: all 0.5s ease;
}
ul.user-menu li:first-child a {
  background-color: transparent;
  border: solid 2px #0c314b;
  color: #0c314b;
  margin-right: 10px;
}
ul.user-menu li:first-child a:hover {
  background-color: #0c314b;
  color: #ffffff;
}
ul.user-menu li:last-child a {
  background-color: #0c314b;
  color: #ffffff;
  border: solid 2px #0c314b;
}
ul.user-menu li:last-child a:hover {
  background-color: transparent;
  color: #0c314b;
}

/* Pages with a dark hero (navy gradient / dark photo overlay) behind the
   transparent header: navy Login/Register buttons disappear against it.
   Switch them to brand red while the header is still floating over the
   hero — once scrolled (or on pages with a solid white header) the
   default navy is fine against the white header background. */
body.dark-hero-header:not(.scrolled):not(.header-solid) ul.user-menu li:first-child a {
  border-color: #fe3c48;
  color: #fe3c48;
}
body.dark-hero-header:not(.scrolled):not(.header-solid) ul.user-menu li:first-child a:hover {
  background-color: #fe3c48;
  color: #ffffff;
}
body.dark-hero-header:not(.scrolled):not(.header-solid) ul.user-menu li:last-child a {
  background-color: #fe3c48;
  border-color: #fe3c48;
  color: #ffffff;
}
body.dark-hero-header:not(.scrolled):not(.header-solid) ul.user-menu li:last-child a:hover {
  background-color: transparent;
  color: #fe3c48;
}
.intro .row {
  display: flex;
}
.intro-left {
  width: 47%;
}
.intro-left img {
  width: 80%;
  display: block;
}
.intro-right {
  width: 53%;
  align-self: flex-end;
}
.intro {
  background: linear-gradient(#fe3c48, #fa868d);
  padding-top: 150px;
}
.intro h1 {
  font-size: 50px;
  font-weight: normal;
  color: #ffffff;
  text-align: center;
  margin: 30px 0 70px 0;
}
.intro h1 b {
  font-weight: 500;
}
.intro-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 30px;
  max-width: 430px;
  background-color: white;
  border-radius: 50px;
  padding: 15px 0;
  border: solid 3px #ffa0a5;
}
.intro-badges a {
  display: flex;
  align-items: center;

  border-radius: 50px;
}
.intro-badges a:hover {
  background: rgba(255, 255, 255, 0.35);
}
.intro-badges .badge-img {
  height: 46px;
  width: auto;
  display: block;
}
#app-section {
  padding: 130px 0;
}
#app-section .row {
  align-items: center;
}
#app-section .section-title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 70px;
  color: #0c314b;
}
#app-section .section-title span {
  font-weight: 600;
  color: #ff3845;
}
#app-section img {
  width: 100%;
  box-shadow: 0px 0px 11px 8px rgba(0, 0, 0, 0.22);
  border-radius: 50px;
}
ul.feature-list {
  list-style: none;
  margin-left: 50px;
}
ul.feature-list li {
  margin-bottom: 30px;
}
ul.feature-list li:last-child {
  margin-bottom: 0;
}
ul.feature-list div.title {
  display: flex;
  margin-bottom: 15px;
  align-items: center;
}
ul.feature-list div.title i {
  color: #ff3845;
  font-size: 26px;
  margin-right: 10px;
}
ul.feature-list div.title h2 {
  color: #0c314b;
  font-weight: 500;
  font-size: 26px;
}
ul.feature-list p {
  color: #4479a2;
  font-size: 20px;
}
section#steps-section {
  background-color: #eef6fc;
  padding: 130px 0;
  margin: 0 50px;
  border-radius: 40px;
}
section#steps-section .section-title,
section#delivery-methods .section-title,
section#partners .section-title,
.about-story .section-title,
.about-team .section-title,
.about-milestone-section .section-title,
.about-security-section .section-title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
  color: #0c314b;
}
section#steps-section .section-description,
section#delivery-methods .section-description,
section#partners .section-description,
.about-story .section-description,
.about-team .section-description,
.about-milestone-section .section-description,
.about-security-section .section-description {
  text-align: center;
  color: #4479a2;
  font-size: 20px;
  line-height: 28px;
  max-width: 800px;
  margin: 0 auto;
}
section#steps-section .section-description {
  margin-bottom: 30px;
}
section#steps-section .row {
  margin-bottom: 50px;
}
section#steps-section .row:last-child {
  margin-bottom: 0;
}
section#steps-section .step {
  display: flex;
  padding-bottom: 10px;
  margin: 0 50px;
}
section#steps-section .step .circle {
  width: 150px;
  height: 150px;
  background: linear-gradient(#fe3c48, #fa868d);
  border-radius: 50%;
  z-index: 9;
  position: relative;
}
section#steps-section .step .circle img {
  width: 150px;
  margin-top: -20px;
}
section#steps-section .step .content {
  background-color: #e0e5e9;
  border-radius: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 70px;
  padding-right: 20px;
  margin-left: -50px;
  margin-top: 30px;
  margin-bottom: -10px;
}
section#steps-section .step .content h3 {
  color: #0c314b;
  font-size: 20px;
  margin-bottom: 15px;
  margin-top: 10px;
}
section#steps-section .step .content p {
  color: #4479a2;
  font-size: 18px;
}
section#delivery-methods {
  padding: 130px 0;
}
section#delivery-methods .section-description {
  margin-bottom: 50px;
}
section#delivery-methods .delivery-method {
  box-shadow: 0px 0px 11px 8px rgba(0, 0, 0, 0.22);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.2s ease;
}
section#delivery-methods .delivery-method:hover {
  transform: scale(1.1);
}
section#delivery-methods .delivery-method .gradient {
  background: linear-gradient(#fe3c48, #fa868d);
  text-align: center;
  padding: 20px;
}
section#delivery-methods .delivery-method .gradient img {
  height: 150px;
}
section#delivery-methods .delivery-method .description {
  padding: 20px;
}
section#delivery-methods .delivery-method .description h3,
section#partners .partners-box .partners-box-header h3 {
  color: #0c314b;
  font-size: 20px;
  margin-bottom: 15px;
}
section#delivery-methods .delivery-method .description p,
section#partners .partners-box .partners-box-header p {
  color: #4479a2;
  font-size: 18px;
  height: 70px;
  line-height: 24px;
}
section#delivery-methods .dark-button {
  margin-top: 50px;
  display: block;
}
section#rewards-program {
  background: linear-gradient(#eef7fe, #c0e4ff);
  padding: 130px 0;
  margin: 0 50px;
  border-radius: 40px;
}
section#rewards-program img {
  width: 400px;
}
section#rewards-program h3 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #0c314b;
}
section#rewards-program p {
  color: #4479a2;
  font-size: 20px;
  line-height: 28px;
  max-width: 800px;
  margin: 0 auto;
}
section#rewards-program a {
  margin-top: 40px;
}
section#partners {
  padding: 130px 0;
}
section#partners .section-description b {
  color: #ff3845;
}
section#partners .partners-box {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 0px 11px 8px rgba(0, 0, 0, 0.22);
  margin-top: 50px;
}
section#partners .left-column .partners-box {
  margin-right: 10px;
}
section#partners .right-column .partners-box {
  margin-left: 10px;
}
section#partners .partners-box .partners-box-header {
  background: linear-gradient(#eef7fe, #c0e4ff);
  padding: 20px;
}
section#partners .partners-box .partners-logos-container {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
section#partners .partners-box .partners-box-header {
  display: flex;
  align-items: center;
}
section#partners .partners-box .partners-box-header .icon {
  background-color: white;
  width: 50px;
  height: 50px;
  border-radius: 20px;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section#partners .partners-box .partners-box-header .icon i {
  font-size: 30px;
  text-align: center;
  color: #0c314b;
}
section#partners .partners-box .partners-box-header h3 {
  margin-bottom: 5px;
}
section#partners .partners-box .partners-box-header p {
  height: auto;
}
section#partners .partners-box .partners-logos-container img,
section#partners .partners-box .partners-logos-container .and-more {
  width: 120px;
  height: 50px;
  padding: 12px 16px;
  box-sizing: border-box;
  object-fit: contain;
  background-color: white;
  box-shadow: 0px 0px 11px 8px rgba(0, 0, 0, 0.22);
  border-radius: 20px;
}
section#partners .partners-box .partners-logos-container .and-more {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #4479a2;
  white-space: nowrap;
}
/* Reviews section */
#reviews-section {
  padding: 130px 0;
  background: linear-gradient(to bottom, #f6f9fc, #ffffff);
  margin: 50px 50px;
  border-radius: 40px;
}
#reviews-section .reviews-heading {
  text-align: center;
  margin-bottom: 50px;
}
#reviews-section .reviews-heading h2 {
  font-size: 40px;
  font-weight: 500;
  color: #0c314b;
  margin-bottom: 20px;
  line-height: 1.2;
}
#reviews-section .reviews-heading h2 span {
  color: #ff3845;
  font-weight: 600;
}
#reviews-section .reviews-heading p {
  color: #4479a2;
  font-size: 18px;
  line-height: 26px;
}
#reviews-section .reviews-heading p b {
  color: #0c314b;
}
.reviews-row {
  padding-bottom: 30px;
  align-items: stretch;
}
.reviews-row .col-6 {
  display: flex;
  flex-direction: column;
}
.reviews-row .col-6:first-child .review-box {
  flex: 1;
}
.review-box {
  border-radius: 20px;
  box-shadow: 0px 0px 11px 8px rgba(0, 0, 0, 0.1);
  padding: 25px;
  display: flex;
  flex-direction: column;
  
  background: linear-gradient(#eef7fe, #c0e4ff);
}
.review-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.platform-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}
.platform-rating {
  text-align: right;
}
.platform-rating strong {
  font-size: 22px;
  color: #0c314b;
  display: block;
}
.platform-rating span {
  font-size: 13px;
  color: #4479a2;
  display: block;
}
.platform-rating .stars {
  color: #ffd700;
  font-size: 18px;
  letter-spacing: 2px;
}
.review-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}
.review-item {
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 12px;
}
.review-item p {
  color: #0c314b;
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 10px;
}
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-meta .reviewer {
  font-size: 13px;
  color: #4479a2;
  font-weight: 500;
}
.review-meta .review-stars {
  color: #ffd700;
  font-size: 13px;
  letter-spacing: 1px;
}
.dark-button {
  display: block;
  text-align: center;
  background-color: #0c314b;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid #0c314b;
  transition: all 0.3s ease;
}
.dark-button:hover {
  background-color: #ffffff;
  color: #0c314b;
}
.app-ratings-row {
  margin-top: 30px;
}
.app-rating-box {
  background: linear-gradient(#eef7fe, #c0e4ff);
  border-radius: 20px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  box-shadow: 0px 0px 11px 8px rgba(0, 0, 0, 0.1);
}
.app-rating-score strong {
  font-size: 30px;
  color: #0c314b;
  display: block;
}
.app-rating-score span {
  font-size: 14px;
  color: #4479a2;
  display: block;
}
.app-rating-score .stars {
  color: #ffd700;
  font-size: 20px;
  letter-spacing: 2px;
}
.badge-img {
  height: 50px;
  display: block;
}
/* FAQ section */
section#faq-section {
  background-color: #eef6fc;
  padding: 130px 0;
  margin: 50px 50px;
  margin-bottom: 0;
  border-radius: 40px;
}
.faq-title {
  font-size: 50px;
  font-weight: 700;
  color: #0c314b;
  text-align: center;
  margin-bottom: 20px;
}
.faq-subtitle {
  font-size: 20px;
  color: #4479a2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 30px;
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #c5d8eb;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  color: #0c314b;
  text-align: left;
  font-family: inherit;
}
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-icon i {
  color: #0c314b;
  font-size: 26px;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon i {
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0 0 22px 48px;
}
.faq-item.open .faq-answer {
  display: block;
}
.faq-answer p,
.faq-answer li {
  font-size: 16px;
  color: #4479a2;
  line-height: 26px;
}
.faq-answer p {
  margin-bottom: 12px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-answer ul,
.faq-answer ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.faq-answer li {
  margin-bottom: 4px;
}
.faq-answer a {
  color: #ff3845;
}
/* =========================================================
   FAQ archive (help centre listing)
   ========================================================= */

/* Search form in hero */
.faq-search-form {
  margin-top: 0;
}
.faq-search-wrap {
  position: relative;
  max-width: 580px;
  display: flex;
  align-items: center;
}
.faq-search-icon {
  position: absolute;
  left: 18px;
  font-size: 20px;
  color: #4479a2;
  pointer-events: none;
}
.faq-search-input {
  flex: 1;
  padding: 14px 18px 14px 50px;
  border: none;
  border-radius: 50px 0 0 50px;
  font-size: 16px;
  font-family: inherit;
  color: #0c314b;
  outline: none;
  background: #ffffff;
}
.faq-search-input::placeholder {
  color: #4479a2;
}
.faq-search-btn {
  padding: 14px 24px;
  background: #0c314b;
  color: #ffffff;
  border: none;
  border-radius: 0 50px 50px 0;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}
.faq-search-btn:hover {
  background: #ff3845;
}

/* FAQ arc items */
.faq-arc-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #c5d8eb;
}
.faq-arc-item:first-of-type {
  border-top: 1px solid #c5d8eb;
}
.faq-arc-item .blog-arc-cat {
  flex-shrink: 0;
  min-width: 110px;
}
.faq-arc-body {
  flex: 1;
}
.faq-arc-arrow {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .faq-arc-item {
    flex-wrap: wrap;
    gap: 8px;
  }
  .faq-arc-item .blog-arc-cat {
    min-width: auto;
  }
  .faq-arc-arrow {
    display: none;
  }
}

/* =========================================================
   FAQ single page
   ========================================================= */
.faq-single-page {
  padding-top: 100px;
}

/* Hero */
.faq-single-hero {
  margin-top: -100px;
  padding: 140px 0 72px;
  background-image: linear-gradient(160deg, #0c314b 0%, #1a4a70 100%);
  border-radius: 0 0 40px 40px;
  text-align: center;
}
.faq-single-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.faq-hero-topic {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  margin-bottom: 20px;
  transition: background 0.2s;
}
.faq-hero-topic:hover {
  background: rgba(255, 255, 255, 0.22);
}
.faq-single-title {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-top: 12px;
}

/* Body */
.faq-single-body {
  padding: 56px 0 80px;
}

/* Back link */
.faq-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4479a2;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.faq-back-link:hover {
  color: #0c314b;
}

/* Content */
.faq-single-content {
  font-size: 17px;
  line-height: 1.85;
  color: #1a2e40;
}
.faq-single-content h2,
.faq-single-content h3,
.faq-single-content h4 {
  color: #0c314b;
  font-weight: 700;
  margin: 36px 0 14px;
  line-height: 1.3;
}
.faq-single-content h2 {
  font-size: 26px;
}
.faq-single-content h3 {
  font-size: 22px;
}
.faq-single-content h4 {
  font-size: 18px;
}
.faq-single-content p {
  margin-bottom: 20px;
}
.faq-single-content a {
  color: #ff3845;
  text-decoration: underline;
}
.faq-single-content ul,
.faq-single-content ol {
  padding-left: 22px;
  margin-bottom: 20px;
}
.faq-single-content li {
  margin-bottom: 6px;
}
.faq-single-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 8px 0 20px;
}

/* Sidebar */
.faq-sidebar {
  padding-left: 20px;
  position: sticky;
  top: 120px;
}
.faq-sidebar-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4479a2;
  margin-bottom: 16px;
}
.faq-topics-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-topic-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1.5px solid #c5d8eb;
  color: #0c314b;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.faq-topic-link:hover {
  border-color: #0c314b;
  background: #f5f8fb;
}
.faq-topic-link.is-active {
  border-color: #0c314b;
  background: #0c314b;
  color: #ffffff;
}
.faq-topic-count {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.6;
}
.faq-topic-link.is-active .faq-topic-count {
  opacity: 0.75;
}

/* Sidebar CTA */
.faq-sidebar-cta {
  background: #f5f8fb;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
.faq-sidebar-cta p {
  font-size: 15px;
  color: #4479a2;
  margin-bottom: 14px;
}
.faq-sidebar-cta .dark-button {
  display: inline-block;
}

/* Responsive */
@media (max-width: 900px) {
  .faq-single-title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .faq-single-hero {
    padding: 120px 0 56px;
  }
  .faq-single-title {
    font-size: 24px;
  }
  .faq-sidebar {
    padding-left: 0;
    margin-top: 48px;
    position: static;
  }
}

/* App download banner */
#app-download {
  padding: 60px 0;
  overflow: hidden;
}
.app-download-box {
  display: flex;
  align-items: center;
  gap: 40px;
}
.app-download-left {
  flex: 1;
}
.app-download-box h3 {
  font-size: 40px;
  font-weight: 500;
  color: #0c314b;
  line-height: 1.2;
  margin-bottom: 20px;
}
.app-download-box h3 span {
  color: #ff3845;
}
.app-download-left p {
  font-size: 16px;
  color: #5d7079;
  line-height: 1.7;
  margin-bottom: 32px;
}
.app-download-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.app-download-right {
  flex: 0 0 auto;
  width: 52%;
  margin-top: -60px;
  margin-bottom: -60px;
}
.app-download-mockup {
  width: 100%;
  display: block;
}
@media (max-width: 768px) {
  .app-download-box {
    flex-direction: column;
  }
  .app-download-box h3 {
    font-size: 32px;
  }
  .app-download-right {
    width: 100%;
    margin-top: 0;
    margin-bottom: -60px;
  }
}
/* ============================================================
   Footer
   ============================================================ */
#main-footer {
  background-color: #ff525c;
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .footer-logo img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.footer-tagline {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 260px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 19px;
  text-decoration: none;
  transition: background-color 0.2s;
}
.footer-social a:hover {
  background-color: rgba(255,255,255,0.3);
}
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.15);
}
/* Legal */
#footer-legal {
  background-color: #e8343f;
  padding: 36px 0;
}
.footer-legal-inner p {
  color: rgba(255,255,255,0.65);
  font-size: 11.5px;
  line-height: 1.75;
  margin-bottom: 10px;
}
.footer-legal-inner p:last-child { margin-bottom: 0; }
.footer-legal-inner strong { color: rgba(255,255,255,0.9); }
.footer-nmls-link {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}
.footer-complaints a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
}
.footer-complaints a:hover { color: #fff; }
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand { grid-column: 1 / -1; }
}
.sub-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 10px;
  color: #0c314b;
  line-height: 1;
}
.sub-toggle i {
  font-size: 18px;
  display: block;
  transition: transform 0.3s ease;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: white;
  font-size: 30px;
  line-height: 1;
  align-items: center;
}
body.scrolled header .hamburger,
header.nav-open .hamburger {
  color: #0c314b;
}
header.nav-open .logo {
  display: inline-block !important;
}
header.nav-open .logo-white {
  display: none !important;
}
@media (max-width: 1200px) {
  body.header-solid header .hamburger {
    color: #0c314b;
  }
  header {
    overflow-x: hidden;
  }
  .hamburger {
    display: flex;
    margin-left: auto;
  }
  ul.main-menu,
  ul.user-menu {
    display: none;
    width: 100%;
  }
  .header-inner {
    flex-wrap: wrap;
    padding: 20px 15px;
  }
  header.nav-open {
    position: fixed;
    background-color: white;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  header.nav-open ul.main-menu {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    padding: 8px;
    margin-bottom: 8px;
  }
  .sub-toggle {
    display: flex;
    align-items: center;
  }
  header.nav-open .menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  header.nav-open .menu-item-has-children > a {
    flex: 1;
  }
  header.nav-open ul.main-menu li ul,
  header.nav-open ul.main-menu li ul.sub-menu {
    position: static;
    display: none;
    opacity: 1;
    box-shadow: none;
    flex: 0 0 100%;
    min-width: 0;
    border-radius: 12px;
    margin: 0 0 8px 0;
    padding: 4px;
  }
  header.nav-open .menu-item-has-children.sub-open > ul.sub-menu {
    display: block;
  }
  header.nav-open .menu-item-has-children.sub-open > .sub-toggle i {
    transform: rotate(180deg);
  }
  header.nav-open ul.user-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 16px;
  }
  header.nav-open ul.user-menu li {
    width: 100%;
  }
  header.nav-open ul.user-menu li a {
    display: block;
    text-align: center;
    margin-right: 0;
  }
  header.nav-open ul.user-menu li:first-child a {
    margin-right: 0;
  }
  section#steps-section,
  section#rewards-program {
    margin-left: 20px;
    margin-right: 20px;
  }
  section#faq-section {
    margin: 30px 20px;
  }
  #steps-section .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #delivery-methods .col-3 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 20px;
  }
  ul.feature-list {
    margin-left: 0;
    margin-top: 30px;
  }
  section#steps-section .step .content {
    flex: 1;
  }
  section#steps-section .step {
    margin-bottom: 50px;
  }
  section#steps-section .row {
    margin-bottom: 0;
  }
  section#steps-section .section-description {
    margin-bottom: 50px;
  }
  .intro .row {
    flex-wrap: wrap;
  }
  .intro-left {
    display: none;
  }
  .intro-right {
    width: 100%;
  }
}
@media (max-width: 767px) {
  header .logo,
  header .logo-white {
    width: 160px;
  }
  .intro {
    padding-top: 100px;
  }
  .intro .row {
    flex-direction: column;
  }
  .intro-left,
  .intro-right {
    width: 100%;
  }
  .intro-left img {
    width: 60%;
    margin: 0 auto;
  }
  .intro-badges {
    margin-bottom: 16px;
  }
  .intro h1 {
    font-size: 30px;
    margin: 20px 0 40px;
  }
  #app-section .section-title,
  section#steps-section .section-title,
  section#delivery-methods .section-title,
  section#partners .section-title,
  #reviews-section .reviews-heading h2 {
    font-size: 28px;
  }
  section#steps-section .section-description,
  section#delivery-methods .section-description,
  section#partners .section-description {
    font-size: 16px;
  }
  #app-section,
  section#steps-section,
  section#delivery-methods,
  section#rewards-program,
  section#partners,
  #reviews-section {
    padding: 60px 0;
  }
  section#steps-section,
  section#rewards-program {
    margin-left: 10px;
    margin-right: 10px;
  }
  section#faq-section {
    margin: 20px 10px;
  }
  #reviews-section {
    margin: 0;
    border-radius: 0;
    padding: 80px 0;
  }
  section#steps-section .step {
    margin: 0 10px;
  }
  #delivery-methods .col-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #rewards-program .col-5,
  #rewards-program .col-7 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  section#rewards-program img {
    width: 220px;
    margin: 0 auto 20px;
  }
  section#rewards-program h3 {
    font-size: 28px;
  }
  section#rewards-program p {
    font-size: 16px;
  }
  #partners .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  section#partners .left-column .partners-box {
    margin-right: 0;
  }
  section#partners .right-column .partners-box {
    margin-left: 0;
  }
  .reviews-row .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .app-ratings-row .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 16px;
  }
  .app-rating-box {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .faq-title {
    font-size: 36px;
  }
  #main-footer {
    padding: 60px 0 0;
  }
}
@media (max-width: 575px) {
  section#steps-section .step {
    display: block;
    margin-bottom: 30px;
  }
  section#steps-section .step .content {
    margin: 0;
    padding: 20px;
    padding-top: 50px;
    text-align: center;
  }
  section#steps-section .step .circle {
    margin: 0 auto;
    margin-bottom: -50px;
  }
}
