/*!
Theme Name: wp-citadel
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.2
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: wp-citadel
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

wp-citadel is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* Fonts Style */
@font-face {
  font-family: "Bricolage Grotesque";
  src:
    url("assets/fonts/BricolageGrotesque-Medium.woff2") format("woff2"),
    url("assets/fonts/BricolageGrotesque-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src:
    url("assets/fonts/BricolageGrotesque-SemiBold.woff2") format("woff2"),
    url("assets/fonts/BricolageGrotesque-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    url("assets/fonts/Inter-Regular.woff2") format("woff2"),
    url("assets/fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    url("assets/fonts/Inter-Medium.woff2") format("woff2"),
    url("assets/fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    url("assets/fonts/Inter-SemiBold.woff2") format("woff2"),
    url("assets/fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Common Style */
:root {
  --inter: "Inter";
  --bricolage_grotesque: "Bricolage Grotesque";
  --secondary: #006A85;
  --white: #ffffff;
  --black: #000000;
  --grey55: #555555;
  --greyf5: #F5F5F5;
  --dark30: #0C2930;
  --red: #dc3232;
    --warning-bg: #fff8e8;
  --warning-border: #d3a44b;
  --warning-text: #614a1e;
  --danger: #9b453b;
  --shadow: 0 16px 45px rgba(8, 42, 79, .08);
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

:focus-visible {
  outline: none;
}

body {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  font-family: var(--inter);
  color: var(--black);
  background: var(--white);
  margin: 0;
  padding: 0;
}

p {
  color: var(--grey55);
}

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

.container {
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

ul,
ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

a,
span {
  display: inline-block;
}

a {
  text-decoration: none;
  color: var(--secondary);
  transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0 0 16px;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

h1,
h2 {
  font-family: var(--bricolage_grotesque);
  line-height: 1.1 !important;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  line-height: 1.25;
  letter-spacing: -0.003em;
}

h1,
.h1 {
  font-size: 56px;
}

h2,
.h2 {
  font-size: 48px;
}

h3,
.h3 {
  font-size: 28px;
}

h4,
.h4 {
  font-size: 22px;
}

h5,
.h5 {
  font-size: 20px;
}

h6,
.h6 {
  font-size: 18px;
}

.pt-90 {
  padding-top: 90px;
}

.pb-90 {
  padding-bottom: 90px;
}

.mt-90 {
  margin-top: 90px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.font-bricolage-grotesque {
  font-family: var(--bricolage_grotesque);
}

.bg-light{
  background-color: #006A851A;
}

input,
textarea,
select,
button {
  font-family: var(--inter);
}

input,
textarea,
select {
  width: 100%;
  background-color: #006A851A;
  backdrop-filter: blur(40px);
  border-radius: 20px;
  font-size: 18px;
  line-height: 1.223;
  padding: 18px 24px;
  border: 1px solid transparent;
  outline: none;
  color: var(--black);
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("assets/images/icon-arrow-down.svg");
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: right 10px center;
  padding-right: 34px !important;
}

select option {
  color: var(--black);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--secondary);
}

input.wpcf7-not-valid,
textarea.wpcf7-not-valid,
select.wpcf7-not-valid {
  border-color: var(--red);
}

textarea {
  display: block;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--grey55);
  opacity: 50%;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.title-wrapper .title {
  margin-bottom: 16px;
}

.title-wrapper p {
  margin-bottom: 32px;
}

.title-wrapper .title:last-child,
.title-wrapper p:last-child {
  margin-bottom: 0;
}

.btn-group,
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.btn-group {
  gap: 12px;
}

.breadcrumb {
  margin-bottom: 16px;
}

.breadcrumb:last-child {
  margin-bottom: 0;
}

.breadcrumb li {
  position: relative;
  font-size: 16px;
  color: var(--secondary);
  padding-right: 20px;
  margin-right: 10px;
}

.breadcrumb li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: var(--black);
  border-radius: 2px;
  width: 10px;
  height: 4px;
}

.breadcrumb li:last-child {
  margin: 0;
  padding: 0;
}

.breadcrumb li:last-child:before {
  display: none;
}

.breadcrumb a,
.breadcrumb span {
  color: var(--black);
  opacity: 0.5;
}

.breadcrumb a:hover {
  color: var(--secondary);
  opacity: 1;
}

/* Button Style */
.btn {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 6px 24px;
  height: 58px;
  cursor: pointer;
  background-color: transparent;
  transition: all 0.3s;
}

.btn .icon {
  width: 20px;
  height: 20px;
  background-color: var(--white);
}

.solid-btn {
  color: var(--white);
  background: var(--secondary);
}

.border-btn {
  border-color: var(--secondary);
  color: var(--secondary);
}

.solid-btn:hover,
.border-btn:hover {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--secondary);
}

.solid-btn:hover .icon,
.border-btn:hover .icon {
  background-color: var(--secondary);
}

.text-btn {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.text-primary-btn {
  color: var(--secondary);
}

.text-primary-btn .icon {
  background-color: var(--secondary);
}

.text-primary-btn:hover {
  color: var(--dark30);
}

.text-primary-btn:hover .icon {
  background-color: var(--dark30);
}

/* Icons Style */
.icon {
  display: block;
  width: 16px;
  height: 16px;
  mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-position: center;
  mask-size: contain;
  mask-size: contain;
  background-color: var(--black);
  transition: all 0.3s;
}

.icon-arrow-down {
  mask-image: url("assets/images/icon-arrow-down.svg");
  -webkit-mask-image: url("assets/images/icon-arrow-down.svg");
}

.icon-arrow-right {
  mask-image: url("assets/images/icon-arrow-right.svg");
  -webkit-mask-image: url("assets/images/icon-arrow-right.svg");
}

.icon-arrow-trend-up {
  mask-image: url("assets/images/icon-arrow-trend-up.svg");
  -webkit-mask-image: url("assets/images/icon-arrow-trend-up.svg");
}

.icon-plus {
  mask-image: url("assets/images/icon-plus.svg");
  -webkit-mask-image: url("assets/images/icon-plus.svg");
}

.icon-calendar {
  mask-image: url("assets/images/icon-calendar.svg");
  -webkit-mask-image: url("assets/images/icon-calendar.svg");
}

.icon-location {
  mask-image: url("assets/images/icon-location.svg");
  -webkit-mask-image: url("assets/images/icon-location.svg");
}

.icon-time {
  mask-image: url("assets/images/icon-time.svg");
  -webkit-mask-image: url("assets/images/icon-time.svg");
}

.icon-google-docs {
  mask-image: url("assets/images/icon-google-docs.svg");
  -webkit-mask-image: url("assets/images/icon-google-docs.svg");
}

.icon-mail {
  mask-image: url("assets/images/icon-mail.svg");
  -webkit-mask-image: url("assets/images/icon-mail.svg");
}

/* Header Style */
.site-header {
  position: sticky;
  top: 0;
  padding: 16px 0;
  background-color: var(--greyf5);
  border-bottom: 1px solid #CBCBCB;
  z-index: 9;
}

.header-inner,
.header-inner .menu,
.header-action,
.toggle-wrapper {
  display: flex;
  align-items: center;
}

.header-action .btn {
  font-size: 14px;
  padding: 6px 12px;
  height: 45px;
  border-radius: 12px;
}

.header-inner {
  justify-content: space-between;
}

.header-inner .site-logo img {
  max-width: 166px;
  max-height: 60px;
}

.header-inner .menu {
  gap: 22px;
}

.header-inner .menu .menu-item a {
  font-size: 14px;
  color: var(--dark30);
}

.header-inner .menu .menu-item.current-menu-item a,
.header-inner .menu .menu-item.current-menu-ancestor>a {
  color: var(--secondary);
}

.header-inner .menu .menu-item-has-children {
  position: relative;
}

.header-inner .menu .menu-item-has-children>a {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
  z-index: 1;
}

.header-inner .menu .menu-item-has-children>a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--dark30);
  /* background: url("assets/images/icon-arrow-down.svg") no-repeat center;
  background-size: contain; */
  mask-image: url("assets/images/icon-arrow-down.svg");
  -webkit-mask-image: url("assets/images/icon-arrow-down.svg");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  width: 16px;
  height: 16px;
}

.header-inner .menu .current-menu-ancestor.menu-item-has-children>a::before {
  background-color: var(--secondary);
}

.header-inner .menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.header-inner .menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background: var(--white);
  margin: 0;
  transition: all 0.3s;
}

.header-inner .menu .sub-menu a {
  font-size: 14px;
  color: var(--black);
  padding: 4px 12px;
  border-bottom: 1px solid #dfdfdf;
  white-space: nowrap;
  display: block;
}

.header-inner .menu .sub-menu a:hover {
  background: var(--secondary);
  color: var(--white);
}

.header-inner .menu .sub-menu .menu-item.current-menu-item a {
  background: var(--secondary);
  color: var(--white);
}

.header-inner .menu .sub-menu .menu-item:last-child a {
  border: none;
}

.header-action,
.toggle-wrapper {
  gap: 10px;
}

.toggle-wrapper .mobile-toggle {
  display: none;
}

.header-action .border-btn:hover {
  border-color: var(--secondary);
}

.header-inner .language-btn img {
  width: 34px;
}

.mobile-menu-action {
  display: none;
}

/* Hero Banner Style */
.hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100dvh - 100px);
  z-index: 1;
}

.hero-banner::before,
.hero-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: -1;
}

.hero-banner::before {
  background: linear-gradient(0deg, #FFFFFF, #FFFFFF), linear-gradient(180deg, rgba(255, 255, 255, 0) 65%, #FFFFFF 100%);
}

.hero-banner::after {
  background: linear-gradient(180deg, rgba(17, 10, 39, 0) 65%, #ffffff 100%);
}

.hero-banner .content-wrapper {
  text-align: center;
}

.hero-banner .content-wrapper .btn-group {
  justify-content: center;
}

.hero-banner .content-wrapper .count-list {
  max-width: 1095px;
  margin: auto;
}

.hero-banner .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-banner .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.count-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

.count-list li span {
  display: block;
  margin-bottom: 6px;
}

.count-list li span:last-child {
  margin: 0;
}

.count-list li .data {
  color: var(--grey55);
}

/* Get started */
.get-started-inner {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #006A85BD;
  border-radius: 20px;
}

.get-started-inner .title-wrapper {
  max-width: 602px;
  width: 100%;
  padding: 80px 40px;
  align-self: center;
}

.get-started-inner .image-wrapper {
  position: relative;
  align-self: flex-end;
  max-width: 598px;
  width: 100%;
  z-index: 1;
}

.get-started-inner .image-wrapper img {
  margin-top: auto;
  margin-left: auto;
}

/* Our services */
.our-services-wrapper .title-wrapper,
.first-steps-wrapper .title-wrapper,
.testimonial-wrapper .title-wrapper {
  margin-bottom: 64px;
  text-align: center;
}

.our-services-wrapper .title-wrapper:last-child,
.first-steps-wrapper .title-wrapper:last-child,
.testimonial-wrapper .title-wrapper:last-child {
  margin-bottom: 0;
}

.our-services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

.our-services-item .title,
.our-services-item p {
  margin-bottom: 24px;
}

.our-services-item .title:last-child,
.our-services-item p:last-child {
  margin-bottom: 0;
}

.our-services-item .link {
  display: inline-flex;
  align-items: center;
  color: var(--black);
  gap: 4px;
  font-weight: 500;
}

.our-services-item .link:hover {
  color: var(--secondary);
}

.our-services-item .link .icon {
  width: 24px;
  height: 24px;
  background-color: #DDEFE8;
}

.our-services-item .link:hover .icon {
  background-color: var(--secondary);
}

.our-services-item img {
  align-self: center;
}

/* Celebrate more earnings */
.celebrate-earnings-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.celebrate-earnings-inner .image-wrapper {
  width: 100%;
}

.celebrate-earnings-inner .image-wrapper img {
  margin: auto;
}

.celebrate-earnings-inner .title-wrapper {
  max-width: 520px;
  width: 100%;
}

/* First steps */
.steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.steps-item {
  display: flex;
  gap: 24px;
  counter-increment: item;
}

.steps-item span {
  display: block;
}

.steps-item .count {
  position: relative;
  width: 62px;
  height: 56px;
  flex-shrink: 0;
  border: 1px solid #ffffff0d;
  background: var(--greyf5);
  backdrop-filter: blur(8px);
  border-radius: 20px;
}

.steps-item .count::before {
  position: absolute;
  content: counter(item);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  font-weight: var(--bricolage_grotesque);
  color: var(--black);
}

.steps-item .title {
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--black);
}

.steps-item .title:last-child {
  margin-bottom: 0;
}

/* Personalized Support */
.personalized-support-wrapper {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.personalized-support-inner {
  padding: 48px 16px;
  border-radius: 20px;
  background: #ffffff1f;
  backdrop-filter: blur(30px);
  border: 1px solid #ffffff66;
}

.personalized-support-inner .title-wrapper {
  max-width: 678px;
  margin: 0 auto;
  text-align: center;
}

.personalized-support-inner .title-wrapper img {
  max-width: 128px;
  max-height: 110px;
  margin: 0 auto 8px;
}

.personalized-support-inner .title-wrapper .title {
  margin-bottom: 12px;
}

/* Why should you trade with us? */
.Why-should-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.faq-item {
  border-radius: 20px;
  margin-bottom: 36px;
  transition: all 0.3s;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item.active {
  background: #006A851A;
}

.faq-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
}

.faq-title .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: var(--black);
}

.faq-item.active .faq-title .icon {
  transform: rotate(45deg);
  background-color: var(--black);
}

.faq-header {
  padding-top: 38px;
  cursor: pointer;
}

.faq-content,
.faq-header {
  padding-left: 46px;
  padding-right: 46px;
  padding-bottom: 38px;
}

.faq-content ul,
.faq-content ol {
  list-style-type: inherit;
  padding: revert;
}

.faq-content {
  display: none;
}

/* Open an account */
.open-account-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.open-account-inner.order-reverse,
.celebrate-earnings-inner.order-reverse {
  flex-direction: row-reverse;
}

.open-account-inner .title-wrapper {
  max-width: 520px;
  width: 100%;
}

/* Customer testimonials */
.swiper-slide.testimonial-item {
  display: flex;
  height: auto;
}

.testimonial-item {
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 20px;
  background: #006A851A;
}

.testimonial-item .rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-item .rating img {
  max-width: 150px;
  max-height: 30px;
}

.testimonial-item .rating,
.testimonial-item p,
.testimonial-item .top {
  margin-bottom: 16px;
}

.testimonial-item .rating:last-child,
.testimonial-item p:last-child,
.testimonial-item .top:last-child {
  margin-bottom: 0;
}

.testimonial-item .name,
.testimonial-item .rating {
  font-size: 20px;
  font-weight: 600;
}

.testimonial-item .name {
  font-family: var(--bricolage_grotesque);
}

.testimonial-item .designation {
  font-weight: 400;
  font-family: var(--inter);
  display: block;
  color: var(--secondary);
}

.testimonial-item .designation,
.testimonial-item p {
  font-size: 16px;
}

.testimonial-pagination {
  position: static !important;
  transform: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 42px;
}

.testimonial-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  background: var(--secondary);
  border-radius: 30px;
  width: 12px;
  height: 6px;
  cursor: pointer;
}

.testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--black);
}

/* Site banner */
.site-banner {
  overflow: hidden;
}

.site-banner .banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-banner .image-wrapper {
  margin-right: -250px;
  max-width: 876px;
}

.site-banner .image-wrapper img {
  width: 100%;
}

.site-banner .title-wrapper {
  padding: 50px 0;
  max-width: 628px;
}

/* Plans & Pricing */
.plans-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.plan-card {
  border: 1px solid #3D8BA5;
  border-radius: 20px;
  padding: 36px;
}

.plan-card .title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.plan-card .price-badge {
  background-color: var(--secondary);
  padding: 10px 28px;
  font-weight: 600;
  border-radius: 8px;
  color: var(--white);
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

.plan-card .title {
  color: var(--secondary);
  margin-bottom: 6px;
}

.plan-card p {
  color: var(--grey55);
}

.plan-card .plan-details-lists {
  column-count: 2;
}

.plan-card .plan-details-lists li {
  position: relative;
  padding-left: 20px;
  line-height: 1.52;
  margin-bottom: 10px;
}

.plan-card .plan-details-lists li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: var(--black);
}

.plan-card .plan-details-lists li.disable {
  opacity: 50%;
}

/* Contact Us */
.contact-us {
  position: relative;
  z-index: 0;
}

.contact-us::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: -1;
  background: linear-gradient(0deg, #FFFFFF, #FFFFFF),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 65%, #FFFFFF 100%);
}

.contact-us .image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 10%;
}

.contact-us .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-us-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-details .breadcrumb {
  margin-bottom: 32px;
}

.contact-details .title {
  margin-bottom: 12px;
}

.contact-details p {
  margin-bottom: 32px;
}

.customer-support>span {
  font-size: 14px;
  opacity: 50%;
}

.contact-support-lists {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 16px;
}

.contact-support-lists:first-child {
  margin-top: 0;
}

.contact-support-lists li:first-child,
.contact-support-lists li:last-child {
  grid-column: span 2;
}

.contact-support-lists li .inner-title,
.contact-support-lists li .content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-support-lists li .icon {
  flex-shrink: 0;
}

.contact-support-lists li .inner-title {
  margin-bottom: 6px;
}

.contact-support-lists li a,
.contact-support-lists li .link {
  color: var(--grey55);
  /* font-weight: 600; */
  display: inline-block;
}

.contact-support-lists li .link {
  display: inline-block;
}

.contact-support-lists li a:hover {
  color: var(--secondary);
}

.contact-form br {
  display: none;
}

.wpcf7-not-valid-tip {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  font-size: 14px;
  line-height: 1;
  color: var(--red);
}

.input-wrapper {
  position: relative;
}

.input-wrapper:not(:last-child) {
  margin-bottom: 34px;
}

.input-wrapper label {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
  color: var(--black);
}

.input-wrapper p {
  margin-bottom: 0;
}

.input-wrapper span {
  width: 100%;
}

.input-wrapper .intl-tel-input .selected-flag .iti-flag {
  margin: 0;
  position: static;
}

.input-wrapper .intl-tel-input .country-list .country {
  color: var(--black);
  font-size: 14px;
}

.input-wrapper .intl-tel-input .country-list .country span {
  width: fit-content;
}

.iti-mobile .intl-tel-input .country-list .country .country-name {
  color: var(--black);
}

.input-wrapper .intl-tel-input input {
  padding-left: 145px !important;
}

.input-wrapper .intl-tel-input .selected-flag .iti-arrow {
  position: static;
  /* border-color: #fff; */
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 2px solid var(--grey55);
  border-top: 0;
  border-right: 0;
  rotate: -45deg;
}

.input-wrapper .intl-tel-input .flag-container .selected-flag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 24px;
  width: 135px !important;
  background: transparent !important;
  border-right: 1px solid #ffffff94;
}

.input-wrapper .intl-tel-input.separate-dial-code .selected-dial-code {
  padding: 0;
}

.input-wrapper .intl-tel-input .selected-flag .iti-arrow {
  position: static;
  border-color: var(--grey55);
}

.wpcf7-spinner {
  margin: 0;
}

.wpcf7-spinner,
.submitting .btn-wrapper .btn .icon {
  display: none;
}

.submitting .btn-wrapper .btn .wpcf7-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.wpcf7-response-output {
  font-size: 14px;
  margin: 16px 0 0;
  text-align: center;
}

.legal-documents {
  position: relative;
  z-index: 0;
}

.legal-documents::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.01) 0%, #FFFFFF 100%);
}

.legal-documents .image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.2;
}

.legal-documents .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legal-documents .title {
  margin-bottom: 64px;
}

.legal-documents-lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

.legal-document-card .inner-title {
  margin-bottom: 24px;
}

.legal-document-card .text-btn .icon {
  width: 24px;
  height: 24px;
}

/* Our Company */
.who-we-are .title-wrapper {
  text-align: center;
}

.small-title {
  color: #006A8599;
  display: inline-block;
}

.who-we-are .title-wrapper .small-title {
  margin-bottom: 24px;
}

.who-we-are .title-wrapper .title {
  font-weight: 500;
  line-height: 1;
}

.title-wrapper .title span {
  color: var(--secondary);
}

.who-we-are-card-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 90px;
}

.who-we-are-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.who-we-are-card .image-box {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  overflow: hidden;
}

.who-we-are-card .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.who-we-are-card .card-title {
  margin-bottom: 24px;
}

/* CFD Trading */
.site-cfds {
  position: relative;
  z-index: 0;
}

/* .site-cfds::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    180deg,
    #110a27 0%,
    rgba(0, 0, 0, 0) 50%,
    #110a27 100%
  );
} */
.site-cfds .image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.5;
}

.site-cfds .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-cfds-wrapper {
  background-color: #006a851c;
  backdrop-filter: blur(10px);
  border: 1px solid #006A854D;
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 130px;
}

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

.site-cfds-wrapper .title {
  margin-bottom: 24px;
  line-height: 1;
}

.site-cfds-wrapper ul,
.site-cfds-wrapper ol {
  list-style-type: inherit;
  padding-left: 20px;
}

.site-cfds-wrapper ul li,
.site-cfds-wrapper ol li {
  margin-bottom: 8px;
  color: var(--grey55);
}

.site-cfds-wrapper ul li:last-child,
.site-cfds-wrapper ol li:last-child {
  margin-bottom: 0;
}

.why-choose-traders .title-wrapper,
.trade-content .title-wrapper {
  text-align: center;
  margin-bottom: 64px;
}

.traders-strategies-lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
}

.why-choose-traders .title-wrapper .title {
  line-height: 1;
}

.trade-content .title-wrapper .title {
  margin-bottom: 12px;
}

.site-caption {
  color: var(--secondary);
  font-weight: 600;
}

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

.strategie-card .image-box {
  width: 140px;
  height: 140px;
  overflow: hidden;
  margin-inline: auto;
}

.strategie-card .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.explore-btn-wrapper {
  margin-top: 64px;
  text-align: center;
}

.trade-content-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.trade-content-left {
  max-width: 450px;
  width: 100%;
}

.trade-content-left h3 {
  margin-bottom: 24px;
}

.trade-content-left ul,
.trade-content-left ol {
  list-style-type: inherit;
  padding-left: 20px;
}

.trade-content-left ul li,
.trade-content-left ol li {
  margin-bottom: 8px;
  color: var(--grey55);
}

.trade-content-left h3:last-child,
.trade-content-left ul li:last-child,
.trade-content-left ol li:last-child {
  margin-bottom: 0;
}

.trade-content-left ul.steps-list {
  grid-template-columns: repeat(1, 1fr);
  padding: 0;
  list-style-type: none;
}

.trade-content-left ul.steps-list li {
  align-items: center;
  margin: 0;
}

.trade-content-right {
  max-width: 601px;
  width: 100%;
}

.trade-content-inner .blue-title {
  background: linear-gradient(180deg, var(--secondary) 0%, rgba(99, 90, 255, 0) 124.84%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-family: var(--bricolage_grotesque);
}

.support-form-wrapper .contact-form {
  max-width: 650px;
  margin: 0 auto;
}

/* Footer Style */
.site-footer {
  padding: 55px 0px;
  background: var(--dark30);
}

.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
}

.footer-links-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.site-footer .footer-top,
.footer-links-wrapper {
  gap: 36px;
}

.footer-links h3 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--white);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul a {
  font-size: 16px;
  color: var(--white);
}

.footer-links ul .current_page_item a,
.footer-links ul a:hover {
  color: var(--secondary);
}

.footer-top .responsibly-wrapper {
  display: flex;
  gap: 16px;
}

.footer-top .responsibly-wrapper span {
  width: 27px;
  height: 27px;
  display: inline-block;
  flex-shrink: 0;
}

.footer-top .responsibly-wrapper span img {
  width: 100%;
}

.footer-top .responsibly-wrapper h3 {
  font-size: 14px;
  margin-bottom: 14px;
  text-transform: uppercase;
  color: var(--white);
}

.footer-top .responsibly-wrapper p {
  font-size: 14px;
  line-height: 2;
  color: var(--white);
}

.footer-top .responsibly-wrapper p a {
  color: var(--secondary);
  text-decoration: underline;
}

.footer-top .responsibly-wrapper .responsibly-content {
  max-width: 604px;
}

.footer-bottom {
  text-align: center;
  padding-top: 70px;
}

.footer-logo img {
  width: 228px;
}

/* //=== new css (26/08/2026) ==// */

.qs-super-page .hero , 
.qs-term-deposit-page .hero {
  background: radial-gradient(circle at 88% 12%, rgba(45, 133, 142, .15), transparent 31%), linear-gradient(135deg, #e8f6ff 0%, #fff 62%);
}
.qs-calculator-page .eyebrow {
  margin: 0 0 12px;
  color: var(--secondary);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.qs-calculator-page h1,
.qs-calculator-page h2,
.qs-calculator-page h3,
.qs-calculator-page p {
  margin-top: 0;
}

.qs-super-page h1 {
  margin-bottom: 18px;
  color: var(--black);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.qs-calculator-page h2 {
  margin-bottom: 14px;
  color: var(--black);
  line-height: 1.12;
  letter-spacing: -.025em;
}
.qs-calculator-page h3 {
  margin-bottom: 8px;
  color: var(--black);
  line-height: 1.25;
  font-family: var(--bricolage_grotesque);
}

.qs-super-page .lead {
  max-width: 820px;
  margin-bottom: 24px;
}

.qs-super-page .hero-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 4px 0 24px;
  padding: 14px 18px;
  border: 1px solid rgba(20, 119, 165, .24);
  border-radius: 14px;
  background: rgba(20, 119, 165, .07);
}

.qs-super-page .hero-badge strong {
  color: var(--black);
  font-size: 24px;
  line-height: 1;
  font-family: var(--bricolage_grotesque);
}

.qs-super-page .hero-badge span {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 700;
}

.qs-super-page .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.qs-calculator-page .center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.qs-calculator-page .muted {
  color: var(--grey55);
}

.qs-super-page .risk-banner {
  margin: 28px 0 0;
  padding: 19px 20px;
  border: 2px solid var(--warning-border);
  border-radius: 14px;
  background: var(--warning-bg);
  color: var(--warning-text);
}

.qs-super-page .risk-banner strong {
  display: block;
  margin-bottom: 5px;
  color: #513b13;
  font-size: 16px;
}

.qs-super-page .risk-banner p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.qs-super-page .compare-shell {
  margin-top: 30px;
  padding: 20px;
  border-radius: 18px;
}
.qs-super-page .controls,
.qs-calculator-page .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.qs-super-page .control {
  padding: 16px;
  border-radius: 12px;
  background: var(--white);
}

.qs-super-page .control label {
  display: block;
  margin-bottom: 7px;
  color: var(--grey55);
  font-size: 14px;
  font-weight: 600;
}

.qs-super-page .control-help {
  margin: 7px 0 0;
  color: var(--grey55);
  font-size: 14px;
  line-height: 1.3;
}
.qs-super-page .field,
.qs-term-deposit-page .manual-amount-field,
.qs-term-deposit-page .qs-compare-widget .cmp-amount-box {
  display: flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid var(--secondary);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
}

.qs-super-page .field span {
  align-self: stretch;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 12px;
  border-right: 1px solid var(--secondary);
  background: var(--greyf5);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
}

.qs-super-page .field input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 10px 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.qs-super-page .field:focus-within {
  border-color: var(--secondary);
}

.qs-super-page .field.invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 2px rgba(155, 69, 59, .08);
}

.qs-super-page .validation {
  display: none;
  margin: 7px 0 0;
  color: var(--danger);
  font-size: 14px;
  font-weight: 700;
}
.qs-super-page .validation.show,
.qs-calculator-page .enquiry-status.show {
  display: block;
}

.qs-super-page select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--secondary);
  border-radius: 10px;
  background-color: var(--white);
  color: var(--black);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}
.qs-super-page select:focus,
.qs-calculator-page .form-group input:focus,
.qs-calculator-page .form-group select:focus,
.qs-calculator-page .form-group textarea:focus,
.qs-term-deposit-page .comparison-select:focus,
.qs-term-deposit-page .qs-compare-widget .cmp-select:focus {
  outline: 0;
  border-color: #c9c9c9;
  box-shadow: 0 0 0 3px rgba(20, 119, 165, .12);
}
.qs-super-page input[type="range"],
.qs-term-deposit-page .qs-compare-widget .cmp-range {
  width: 100%;
  min-height: 44px;
  margin: 10px 0 0;
  accent-color: var(--secondary);
  cursor: pointer;
}

.qs-super-page .range-labels {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--grey55);
  font-size: 14px;
  font-weight: 600;
}

.qs-super-page .tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.qs-super-page .tier-card {
  padding: 15px;
  border: 1px solid var(--grey55);
  border-radius: 12px;
  background: var(--white);
}

.qs-super-page .tier-card.active-tier {
  border-color: var(--secondary);
  background: rgba(20, 119, 165, .075);
  box-shadow: inset 0 0 0 1px rgba(20, 119, 165, .12);
}

.qs-super-page .tier-card small {
  display: block;
  color: var(--grey55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.qs-super-page .tier-card strong {
  display: block;
  margin: 4px 0;
  color: var(--black);
  font-size: 15px;
}

.qs-super-page .tier-card span {
  color: var(--grey55);
  font-size: 14px;
}

.qs-super-page .comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) 58px minmax(0, .82fr);
  gap: 15px;
  align-items: stretch;
  margin-top: 24px;
}

.qs-super-page .qs-focus-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(20, 119, 165, .26);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(20, 119, 165, .09), rgba(45, 133, 142, .06));
}
.qs-super-page .qs-focus-banner .copy,
.qs-calculator-page .form-group {
  min-width: 0;
}
.qs-super-page .qs-focus-banner small,
.qs-term-deposit-page .qs-compare-widget .cmp-focus-banner small {
  display: block;
  margin-bottom: 4px;
  color: var(--secondary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.qs-super-page .qs-focus-banner strong {
  display: block;
  color: var(--black);
  font-size: 19px;
  line-height: 1.3;
}
.qs-super-page .qs-focus-banner .metric,
.qs-term-deposit-page .qs-compare-widget .cmp-focus-value {
  flex: 0 0 auto;
  /* text-align: right; */
}

.qs-super-page .qs-focus-banner .metric span {
  display: block;
  color: var(--grey55);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.qs-super-page .qs-focus-banner .metric b {
  display: block;
  margin-top: 10px;
  color: var(--black);
  font-size: 26px;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.qs-super-page .product-card,
.qs-term-deposit-page .qs-compare-widget .cmp-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--secondary);
  border-radius: 18px;
  background: var(--white);
}

.qs-super-page .product-card.qs {
  position: relative;
  border: 2px solid rgba(20, 119, 165, .56);
  background: linear-gradient(180deg, rgba(20, 119, 165, .10), #fff 72%);
  box-shadow: 0 14px 34px rgba(20, 119, 165, .10);
}

.qs-super-page .product-card.qs::before {
  content: "Q-Strategies";
  position: absolute;
  top: 0;
  right: 18px;
  transform: translateY(-50%);
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.qs-super-page .product-card.benchmark {
  background: #fbfcfd;
  opacity: .94;
  border-color: #e2e8ed;
}

.vs,
.cmp-vs {
  align-self: center;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  box-shadow: 0 8px 24px rgba(8, 42, 79, .14);
}

.qs-super-page .ribbon {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20, 119, 165, .1);
  color: var(--secondary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.qs-super-page .benchmark .ribbon,
.qs-term-deposit-page .qs-compare-widget .bank .cmp-ribbon {
  background: #eef2f5;
  color: #697b8a;
}

.qs-super-page .structure {
  min-height: 48px;
  color: var(--grey55);
  font-size: 14px;
}

.qs-super-page .big-number {
    margin: 18px 0 10px;
    color: var(--black);
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.qs-super-page .small-note {
  min-height: 52px;
  color: var(--grey55);
  font-size: 14px;
  line-height: 1.5;
}
.qs-super-page .projected,
.qs-term-deposit-page .qs-compare-widget .cmp-interest {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--secondary);
}
.qs-super-page .projected span,
.qs-term-deposit-page .qs-compare-widget .cmp-interest span {
  display: block;
  color: var(--grey55);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.qs-super-page .projected strong,
.qs-term-deposit-page .qs-compare-widget .cmp-interest strong {
  display: block;
  margin-top: 4px;
  color: var(--black);
  font-size: 28px;
  font-variant-numeric: tabular-nums;
}
.qs-super-page .difference,
.qs-term-deposit-page .qs-compare-widget .cmp-difference {
  margin-top: 22px;
  padding: 20px;
  border-radius: 16px;
  background: var(--secondary);
  color: var(--white);
}
.qs-super-page .difference-top,
.qs-term-deposit-page .comparison-highlight .headline,
.qs-term-deposit-page .qs-compare-widget .cmp-difference-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.qs-super-page .difference-top span,
.qs-term-deposit-page .qs-compare-widget .cmp-difference-top span {
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
}

.qs-super-page .difference-top strong {
  font-size: 29px;
  font-variant-numeric: tabular-nums;
}

.qs-super-page .difference-context {
  margin-top: 5px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.qs-super-page .uplift-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.qs-super-page .uplift-stat {
  padding: 12px 14px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .09);
}

.qs-super-page .uplift-stat small {
  display: block;
  color: rgba(255, 255, 255, .68);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.qs-super-page .uplift-stat strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
}
.qs-super-page .bars,
.qs-term-deposit-page .manual-amount-wrap,
.qs-term-deposit-page .qs-compare-widget .cmp-bars {
  margin-top: 16px;
}
.qs-super-page .bar-row+.bar-row,
.qs-term-deposit-page .qs-compare-widget .cmp-bar-row+.cmp-bar-row {
  margin-top: 12px;
}
.qs-super-page .bar-label,
.qs-term-deposit-page .qs-compare-widget .cmp-bar-label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}
.qs-super-page .bar-track,
.qs-term-deposit-page .qs-compare-widget .cmp-bar-track {
  height: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
}
.qs-super-page .bar-fill,
.qs-term-deposit-page .qs-compare-widget .cmp-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: #69b8d5;
  transition: width .22s ease;
}
.qs-super-page .bar-fill.benchmark,
.qs-term-deposit-page .qs-compare-widget .cmp-bar-fill.bank {
  background: #b1bec9;
}

.qs-super-page .stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.qs-super-page .stat,
.qs-super-page .fee-item,
.qs-term-deposit-page .snapshot-item {
  padding: 16px;
  border: 1px solid var(--secondary);
  border-radius: 12px;
  background: var(--white);
}
.qs-super-page .stat small,
.qs-term-deposit-page .comparison-strip-item small {
  display: block;
  margin-bottom: 4px;
  color: var(--grey55);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 700;
}

.qs-super-page .stat strong {
  color: var(--black);
  font-size: 15px;
  line-height: 1.3;
}

.qs-super-page .method-box {
  margin-top: 20px;
  padding: 17px 18px;
  border-radius: 12px;
  background: var(--white);
  color: var(--grey55);
  font-size: 14px;
  line-height: 1.65;
}
.qs-super-page .method-box strong,
.qs-super-page .fee-note-value {
  color: var(--black);
}

.qs-super-page .notice {
  margin-top: 22px;
  padding: 15px 17px;
  border-left: 4px solid var(--warning-border);
  background: #fffaf2;
  color: #665333;
  font-size: 14px;
  line-height: 1.6;
}
.qs-calculator-page .cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.qs-calculator-page .card {
  padding: 24px;
  border: 1px solid var(--secondary);
  border-radius: 15px;
  background: var(--white);
}

.qs-super-page .card-number {
  width: 38px;
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}
.qs-super-page .snapshot-table-wrap,
.qs-term-deposit-page .rate-table-wrap {
  overflow-x: auto;
  margin-top: 28px;
  border: 1px solid var(--secondary);
  border-radius: 15px;
  background: var(--white);
}
.qs-calculator-page table {
  width: 100%;
  border-collapse: collapse;
}

.qs-super-page th,
.qs-super-page td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--secondary);
  text-align: left;
  vertical-align: top;
}

.qs-super-page th {
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  white-space: nowrap;
}

.qs-super-page td {
  font-size: 13px;
  min-width: 140px;
}
.qs-calculator-page tr:last-child td {
  border-bottom: 0;
}

.qs-super-page .source-list {
  display: grid;
  gap: 9px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.qs-super-page .fee-comparison-shell {
  margin-top: 30px;
  padding: 28px;
  border-radius: 18px;
}

.qs-super-page .fee-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.qs-super-page .fee-summary-card {
  padding: 18px;
  border-radius: 12px;
  background: var(--white);
}

.qs-super-page .fee-summary-card small {
  display: block;
  margin-bottom: 5px;
  color: var(--grey55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.qs-super-page .fee-summary-card strong {
  display: block;
  color: var(--black);
  font-size: 23px;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}

.qs-super-page .fee-summary-card span {
  display: block;
  margin-top: 6px;
  color: var(--grey55);
  font-size: 14px;
  line-height: 1.45;
}

.qs-super-page .fee-breakdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.qs-super-page .fee-item h3 {
  margin-bottom: 5px;
  font-size: 16px;
}

.qs-super-page .fee-item p {
  margin: 0;
  color: var(--grey55);
  font-size: 14px;
  line-height: 1.55;
}

.qs-super-page .source-list a {
  color: var(--secondary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.qs-calculator-page .terms-intro {
  max-width: 850px;
  margin-bottom: 28px;
  color: var(--grey55);
}
.qs-calculator-page details {
  margin-bottom: 10px;
  border: 1px solid var(--secondary);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
}
.qs-calculator-page summary {
  padding: 17px 20px;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.qs-calculator-page summary::-webkit-details-marker,
.qs-super-page .enquiry-modal[hidden] {
  display: none;
}
.qs-calculator-page summary::after {
  content: "+";
  float: right;
  color: var(--secondary);
  font-size: 20px;
  line-height: 1;
}
.qs-calculator-page details[open] summary::after {
  content: "−";
}
.qs-calculator-page .details-body {
  padding: 0 20px 20px;
  color: var(--grey55);
  font-size: 14px;
}
.qs-calculator-page .details-body ul {
  padding-left: 20px;
  margin-bottom: 0;
}
.qs-calculator-page .details-body ul li{
  list-style-type: disc;
}
.qs-calculator-page .details-body li {
  margin: 7px 0;
}

.legal-box {
  margin-top: 28px;
  padding: 24px;
  border: 2px solid var(--warning-border);
  border-radius: 14px;
  background: var(--warning-bg);
  color: var(--warning-text);
  font-size: 14px;
  line-height: 1.65;
}

.legal-box h6 {
  color: #513b13;
  font-size: 16px;
  margin-bottom: 12px;
}

.qs-super-page .enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 42, 79, .62);
  overflow: auto;
}

.qs-super-page .enquiry-dialog {
  width: min(760px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(8, 42, 79, .28);
}
.qs-calculator-page .enquiry-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--secondary);
}
.qs-calculator-page .enquiry-header h2 {
  margin: 0;
  font-size: 28px;
}

.qs-super-page .enquiry-header p {
  margin: 6px 0 0;
  color: var(--grey55);
  font-size: 13px;
}

.qs-super-page .enquiry-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--secondary);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}
.qs-calculator-page .enquiry-form {
  padding: 24px;
}
.qs-calculator-page .form-section+.form-section {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #c9c9c9;
}
.qs-calculator-page .form-section h3 {
  margin-bottom: 4px;
  font-size: 17px;
}
.qs-calculator-page .form-section>p {
  margin-bottom: 14px;
  color: var(--grey55);
  font-size: 14px;
}
.qs-calculator-page .form-group.full,
.qs-super-page .control-full {
  grid-column: 1 / -1;
}
.qs-calculator-page .form-group label {
  display: block;
  margin-bottom: 6px;
  color: var(--dark30);
  font-size: 14px;
  font-weight: 600;
}
.qs-calculator-page .form-group input,
.qs-calculator-page .form-group select,
.qs-calculator-page .form-group textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #c9c9c9;
  border-radius: 9px;
  background-color: var(--white);
  font: inherit;
  color: var(--black);
  font-size: 14px;
}
.qs-calculator-page .form-group textarea {
  min-height: 110px;
  resize: vertical;
}
.qs-calculator-page .form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 14px;
  color: var(--grey55);
  font-size: 14px;
  line-height: 1.5;
}

.qs-super-page .form-check input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.qs-calculator-page .enquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.qs-super-page .form-note {
  margin: 12px 0 0;
  color: var(--grey55);
  font-size: 10px;
  line-height: 1.5;
}
.qs-calculator-page .enquiry-status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 9px;
  background: var(--greyf5);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
}

.qs-term-deposit-page h1 {
  max-width: 900px;
  margin-bottom: 18px;
  color: var(--black);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.qs-term-deposit-page .lead {
  max-width: 790px;
  margin-bottom: 26px;
}

.qs-term-deposit-page .hero-rate {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 4px 0 26px;
  padding: 14px 18px;
  border: 1px solid rgba(20, 119, 165, .24);
  border-radius: 14px;
  background: rgba(20, 119, 165, .07);
}

.qs-term-deposit-page .hero-rate strong {
  color: var(--black);
  font-size: 27px;
  line-height: 1;
}

.qs-term-deposit-page .hero-rate span {
  color: var(--secondary);
  font-size: 15px;
  font-weight: 700;
}

.qs-term-deposit-page .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.qs-term-deposit-page .calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: 24px;
  margin-top: 34px;
}

.qs-term-deposit-page .calculator-panel,
.qs-term-deposit-page .result-panel {
  border-radius: 16px;
  /* box-shadow: var(--shadow); */
  padding: 26px;
}

.qs-term-deposit-page .amount-row,
.qs-term-deposit-page .result-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.qs-term-deposit-page .amount-label,
.qs-term-deposit-page .result-label {
  color: var(--grey55);
  font-size: 14px;
  font-weight: 700;
}

.qs-term-deposit-page .amount-quick-field {
  display: flex;
  align-items: center;
  min-width: min(100%, 260px);
  min-height: 48px;
  border: 1px solid var(--secondary);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
}
.qs-term-deposit-page .amount-quick-prefix,
.qs-term-deposit-page .qs-compare-widget .cmp-amount-box span {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-right: 1px solid var(--secondary);
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
}

.qs-term-deposit-page .amount-quick-input {
  width: 170px;
  min-width: 0;
  min-height: 46px;
  padding: 9px 11px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.qs-term-deposit-page .amount-quick-field:focus-within,
.qs-term-deposit-page .manual-amount-field:focus-within,
.qs-term-deposit-page .qs-compare-widget .cmp-amount-box:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(20, 119, 165, .12);
}
.qs-term-deposit-page .amount-quick-field:has(input[aria-invalid="true"]),
.qs-term-deposit-page .manual-amount-field:has(input[aria-invalid="true"]) {
  border-color: #b86b5d;
}
.qs-term-deposit-page .manual-amount-label,
.qs-term-deposit-page .comparison-control label {
  display: block;
  margin-bottom: 7px;
  color: var(--grey55);
  font-size: 13px;
  font-weight: 700;
}

.qs-term-deposit-page .manual-amount-prefix {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 13px;
  border-right: 1px solid var(--secondary);
  background: var(--white);
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
}

.qs-term-deposit-page .manual-amount-field .amount-text-input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 10px 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  -moz-appearance: textfield;
}

.qs-term-deposit-page .manual-amount-help {
  margin: 7px 0 0;
  color: var(--grey55);
  font-size: 14px;
}

.qs-term-deposit-page input[type="range"] {
  width: 100%;
  min-height: 48px;
  margin: 18px 0 2px;
  accent-color: var(--secondary);
  cursor: pointer;
}

.qs-term-deposit-page input[type="range"]:focus-visible {
  outline: 3px solid rgba(20, 119, 165, .25);
  outline-offset: 3px;
  border-radius: 999px;
}

.qs-term-deposit-page .range-labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--grey55);
  font-size: 14px;
}

.qs-term-deposit-page .tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 25px;
}

.qs-term-deposit-page .tier {
  padding: 14px;
  border: 1px solid var(--secondary);
  border-radius: 12px;
  background: var(--white);
  transition: .2s ease;
}

.qs-term-deposit-page .tier.active {
  border-color: var(--secondary);
  background: rgba(20, 119, 165, .08);
  box-shadow: inset 0 0 0 1px rgba(20, 119, 165, .14);
}
.qs-term-deposit-page .tier small,
.qs-term-deposit-page .snapshot-item small {
  display: block;
  margin-bottom: 4px;
  color: var(--grey55);
  font-size: 14px;
}

.qs-term-deposit-page .tier strong {
  color: var(--black);
  font-size: 15px;
}

.qs-term-deposit-page .result-rate {
  color: var(--secondary);
  font-size: 26px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.qs-term-deposit-page .gain {
    margin: 20px 0 10px;
    color: var(--black);
    font-size: clamp(32px, 6vw, 56px);
    line-height: 1;
    font-weight: 800;
}

.qs-term-deposit-page .gain-caption {
  margin-bottom: 24px;
  color: var(--grey55);
  font-size: 14px;
}

.qs-term-deposit-page .annual-box {
  padding-top: 20px;
  border-top: 1px solid var(--secondary);
}

.qs-term-deposit-page .annual-box strong {
  display: block;
  color: var(--black);
  font-size: 21px;
  font-variant-numeric: tabular-nums;
}

.qs-term-deposit-page .calc-note {
  margin: 22px 0 0;
  color: var(--grey55);
  font-size: 14px;
  line-height: 1.5;
}

.qs-term-deposit-page .card-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.qs-term-deposit-page th,
.qs-term-deposit-page td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--secondary);
  text-align: left;
  white-space: nowrap;
}

.qs-term-deposit-page th {
  background: var(--white);
  color: var(--black);
  font-size: 13px;
}

.qs-term-deposit-page td {
  font-size: 14px;
}

.qs-term-deposit-page .rate-pill {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(45, 133, 142, .1);
  color: var(--secondary);
  font-weight: 800;
}

.qs-term-deposit-page .notice {
  margin-top: 28px;
  padding: 18px 20px;
  font-size: 14px;
  border-left: 4px solid var(--warning-border);
  background: #fffaf2;
  color: #665333;
}

.qs-term-deposit-page .qs-compare-widget {
  margin-top: 30px;
  padding: 26px;
  border-radius: 16px;
}

.qs-term-deposit-page .comparison-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, .72fr);
  gap: 22px;
  align-items: end;
}

.qs-term-deposit-page .comparison-select {
  width: 100%;
  min-height: 48px;
  padding: 11px 42px 11px 13px;
  border: 1px solid var(--secondary);
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
}

.qs-term-deposit-page .comparison-amount {
  padding: 15px 17px;
  border: 1px solid var(--secondary);
  border-radius: 12px;
  background: var(--white);
}

.qs-term-deposit-page .comparison-amount small {
  display: block;
  margin-bottom: 3px;
  color: var(--grey55);
  font-size: 14px;
  font-weight: 700;
}

.qs-term-deposit-page .comparison-amount strong {
  color: var(--black);
  font-size: 23px;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}

.qs-term-deposit-page .comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.qs-term-deposit-page .comparison-card {
  padding: 23px;
  border: 1px solid var(--secondary);
  border-radius: 15px;
  background: var(--white);
}

.qs-term-deposit-page .comparison-card.qs {
  border-color: rgba(20, 119, 165, .32);
  background: rgba(20, 119, 165, .055);
}

.qs-term-deposit-page .comparison-card .kicker {
  margin-bottom: 7px;
  color: var(--grey55);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.qs-term-deposit-page .comparison-card .rate-large {
  margin-bottom: 5px;
  color: var(--black);
  font-size: 31px;
  line-height: 1.05;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.qs-term-deposit-page .comparison-card .rate-sub {
  min-height: 40px;
  color: var(--grey55);
  font-size: 13px;
}

.qs-term-deposit-page .comparison-interest {
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid var(--secondary);
}

.qs-term-deposit-page .comparison-interest small {
  display: block;
  color: var(--grey55);
  font-size: 14px;
  font-weight: 700;
}

.qs-term-deposit-page .comparison-interest strong {
  display: block;
  margin-top: 3px;
  color: var(--black);
  font-size: 26px;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.qs-term-deposit-page .bar-group {
  margin-top: 24px;
  padding-top: 23px;
  border-top: 1px solid var(--secondary);
}

.qs-term-deposit-page .bar-row+.bar-row {
  margin-top: 14px;
}

.qs-term-deposit-page .bar-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
  color: var(--grey55);
  font-size: 14px;
}

.qs-term-deposit-page .bar-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf2f6;
}

.qs-term-deposit-page .bar-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--dark30);
  transition: width .25s ease;
}

.qs-term-deposit-page .bar-fill.bank {
  background: #7c8f9f;
}

.qs-term-deposit-page .difference-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 23px;
  padding: 17px 19px;
  border-radius: 12px;
  background: var(--dark30);
  color: var(--white);
}

.qs-term-deposit-page .difference-box span {
  font-size: 13px;
  color: rgba(255, 255, 255, .76);
}

.qs-term-deposit-page .difference-box strong {
  font-size: 25px;
  font-variant-numeric: tabular-nums;
}

.qs-term-deposit-page .market-snapshot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.qs-term-deposit-page .snapshot-item strong {
  color: var(--black);
  font-size: 16px;
  line-height: 1.3;
}

.qs-term-deposit-page .comparison-source {
  margin: 18px 0 0;
  color: var(--grey55);
  font-size: 14px;
  line-height: 1.55;
}

.qs-term-deposit-page .versus-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 26px;
}

.qs-term-deposit-page .versus-badge {
  align-self: center;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--dark30);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  box-shadow: 0 8px 24px rgba(8, 42, 79, .14);
}

.qs-term-deposit-page .product-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid var(--secondary);
  background: var(--white);
  min-width: 0;
}

.qs-term-deposit-page .product-card.qs-product {
  border: 2px solid rgba(20, 119, 165, .45);
  background: linear-gradient(180deg, rgba(20, 119, 165, .07), rgba(255, 255, 255, .98));
}

.qs-term-deposit-page .product-card.bank-product {
  background: linear-gradient(180deg, #f8fafc, #fff);
}

.qs-term-deposit-page .product-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.qs-term-deposit-page .qs-product .product-ribbon {
  background: rgba(20, 119, 165, .12);
  color: var(--secondary);
}

.qs-term-deposit-page .bank-product .product-ribbon {
  background: #eef2f5;
  color: #596c7c;
}

.qs-term-deposit-page .product-title {
  margin: 0 0 6px;
  color: var(--black);
  font-size: 24px;
  line-height: 1.15;
}

.qs-term-deposit-page .product-subtitle {
  min-height: 42px;
  margin: 0 0 20px;
  color: var(--grey55);
  font-size: 13px;
  line-height: 1.5;
}

.qs-term-deposit-page .hero-number {
  margin: 0 0 3px;
  color: var(--black);
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}

.qs-term-deposit-page .hero-number-label {
  color: var(--grey55);
  font-size: 14px;
  font-weight: 700;
}

.qs-term-deposit-page .feature-list {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.qs-term-deposit-page .feature-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 9px;
  align-items: start;
  color: var(--dark30);
  font-size: 13px;
  line-height: 1.45;
}

.qs-term-deposit-page .feature-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(20, 119, 165, .10);
  color: var(--secondary);
  font-size: 14px;
  font-weight: 800;
}

.qs-term-deposit-page .bank-product .feature-icon {
  background: #eef2f5;
  color: #677988;
}

.qs-term-deposit-page .comparison-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.qs-term-deposit-page .comparison-strip-item {
  padding: 14px;
  border: 1px solid var(--secondary);
  border-radius: 12px;
  background: var(--white);
  text-align: center;
}

.qs-term-deposit-page .comparison-strip-item strong {
  color: var(--black);
  font-size: 14px;
  line-height: 1.3;
}

.qs-term-deposit-page .comparison-highlight {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(20, 119, 165, .24);
  border-radius: 14px;
  background: rgba(20, 119, 165, .055);
}

.qs-term-deposit-page .comparison-highlight .headline span {
  color: var(--grey55);
  font-size: 13px;
  font-weight: 700;
}

.qs-term-deposit-page .comparison-highlight .headline strong {
  color: var(--black);
  font-size: 28px;
  font-variant-numeric: tabular-nums;
}

.qs-term-deposit-page .compare-caution {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--secondary);
  background: #fffaf2;
  color: #665333;
  font-size: 14px;
  line-height: 1.55;
}

.qs-term-deposit-page .steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.qs-term-deposit-page .step {
  padding: 22px;
  border: 1px solid var(--secondary);
  border-radius: 14px;
  background: var(--white);
}


.qs-term-deposit-page .qs-compare-widget .cmp-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .68fr);
  gap: 18px;
  margin-bottom: 24px;
}

.qs-term-deposit-page .qs-compare-widget .cmp-control {
  padding: 16px;
  border-radius: 14px;
  background: var(--white);
}

.qs-term-deposit-page .qs-compare-widget .cmp-control label {
  display: block;
  margin-bottom: 8px;
  color: var(--grey55);
  font-size: 14px;
  font-weight: 800;
}

.qs-term-deposit-page .qs-compare-widget .cmp-amount-box input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 10px 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.qs-term-deposit-page .qs-compare-widget .cmp-range-labels {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--grey55);
  font-size: 14px;
}

.qs-term-deposit-page .qs-compare-widget .cmp-select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--secondary);
  border-radius: 10px;
  background-color: var(--white);
  color: var(--black);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
}

.qs-term-deposit-page .qs-compare-widget .cmp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) 58px minmax(0, .82fr);
  gap: 15px;
  align-items: stretch;
}

.qs-term-deposit-page .qs-compare-widget .cmp-card.qs {
  position: relative;
  border: 2px solid rgba(20, 119, 165, .58);
  background: linear-gradient(180deg, rgba(20, 119, 165, .11), #fff 72%);
  box-shadow: 0 14px 34px rgba(20, 119, 165, .12);
}

.qs-term-deposit-page .qs-compare-widget .cmp-card.qs::before {
  content: "Q-Strategies";
  position: absolute;
  top: 0;
  right: 18px;
  transform: translateY(-50%);
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--secondary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.qs-term-deposit-page .qs-compare-widget .cmp-card.bank {
  background: #f9fbfc;
  border-color: #e2e8ed;
}

.qs-term-deposit-page .qs-compare-widget .cmp-ribbon {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20, 119, 165, .10);
  color: var(--secondary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.qs-term-deposit-page .qs-compare-widget .cmp-card h3 {
  margin: 0 0 5px;
  color: var(--black);
  font-size: 23px;
}

.qs-term-deposit-page .qs-compare-widget .cmp-structure {
  min-height: 38px;
  color: var(--grey55);
  font-size: 14px;
  line-height: 1.5;
}

.qs-term-deposit-page .qs-compare-widget .cmp-rate {
  margin: 18px 0 10px;
  color: var(--black);
  font-size: 35px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}

.qs-term-deposit-page .qs-compare-widget .cmp-rate-note {
  min-height: 40px;
  color: var(--grey55);
  font-size: 14px;
  line-height: 1.45;
}

.qs-term-deposit-page .qs-compare-widget .cmp-focus-banner {
  display: flex;
  flex-direction: column; 
  gap: 20px;
  margin: 0 0 24px;
  padding: 18px 20px;
  border: 1px solid rgba(20, 119, 165, .30);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(20, 119, 165, .10), rgba(45, 133, 142, .06));
}

.qs-term-deposit-page .qs-compare-widget .cmp-focus-banner strong {
  display: block;
  color: var(--black);
  font-size: 18px;
  line-height: 1.35;
}

.qs-term-deposit-page .qs-compare-widget .cmp-focus-value span {
  display: block;
  color: var(--grey55);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.qs-term-deposit-page .qs-compare-widget .cmp-focus-value b {
  display: block;
  margin-top: 8px;
  color: var(--black);
  font-size: 28px;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.qs-term-deposit-page .qs-compare-widget .cmp-uplift-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 16px;
}

.qs-term-deposit-page .qs-compare-widget .cmp-uplift {
  padding: 12px 13px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .09);
}

.qs-term-deposit-page .qs-compare-widget .cmp-uplift small {
  display: block;
  color: rgba(255, 255, 255, .70);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.qs-term-deposit-page .qs-compare-widget .cmp-uplift strong {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
}

.qs-term-deposit-page .qs-compare-widget .cmp-call-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--secondary);
  border-radius: 12px;
  background: var(--white);
}

.qs-term-deposit-page .qs-compare-widget .cmp-call-action p {
  margin: 0;
  color: var(--grey55);
  font-size: 14px;
}

.qs-term-deposit-page .qs-compare-widget .cmp-difference-top strong {
  font-size: 30px;
  font-variant-numeric: tabular-nums;
}

.qs-term-deposit-page .qs-compare-widget .cmp-tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 19px;
}

.qs-term-deposit-page .qs-compare-widget .cmp-tier {
  padding: 12px;
  border: 1px solid var(--secondary);
  border-radius: 11px;
  background: var(--white);
  text-align: center;
}

.qs-term-deposit-page .qs-compare-widget .cmp-tier.active {
  border-color: var(--secondary);
  background: rgba(20, 119, 165, .08);
}

.qs-term-deposit-page .qs-compare-widget .cmp-tier small {
  display: block;
  color: var(--grey55);
  font-size: 12px;
}

.qs-term-deposit-page .qs-compare-widget .cmp-tier strong {
  display: block;
  margin-top: 2px;
  color: var(--black);
  font-size: 14px;
}

.qs-term-deposit-page .qs-compare-widget .cmp-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--warning-border);
  background: #fffaf2;
  color: #665333;
  font-size: 14px;
  line-height: 1.55;
}

/* Speak With Our Team enquiry modal */
.qs-term-deposit-page .enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.26);
  overflow: auto;
  backdrop-filter: blur(10px);
}

/* Works with normal anchor links even if JavaScript is unavailable. */
.qs-term-deposit-page .enquiry-modal:target,
.qs-term-deposit-page .enquiry-modal.is-open {
  display: flex;
}

.qs-term-deposit-page .enquiry-dialog {
  width: min(780px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(8, 42, 79, .30);
}

.qs-term-deposit-page .enquiry-header p {
  margin: 7px 0 0;
  color: var(--grey55);
  font-size: 13px;
  line-height: 1.55;
}

.qs-term-deposit-page .enquiry-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--secondary);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
}

.qs-term-deposit-page .form-check input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 3px;
}

.qs-term-deposit-page .form-note {
  margin: 12px 0 0;
  color: var(--grey55);
  font-size: 10px;
  line-height: 1.55;
}

.qs-super-page .fee-note {
  font-size: 13px;
  line-height: 1.55;
}

/* .page-template-superannuation-focus-comparison .site-header , 
.page-template-page-templatesterm-deposit-fixed-popup-php .site-header , 
.page-template-superannuation-focus-comparison .site-footer , 
.page-template-page-templatesterm-deposit-fixed-popup-php .site-footer{
  display: none;
} */

.page-template-superannuation-focus-comparison .otgs-development-site-front-end , 
.page-template-page-templatesterm-deposit-fixed-popup-php .otgs-development-site-front-end{
  display: none;
}
/* //=== End new css (26/08/2026) ==// */