:root {
  --White: #ffffff;
  --Inspirational-Green: #e7f7f1;
  --Green-Light: #00ff6a;
  --Go-Green: #00e677;
  --Good-Green: #10a867;
  --Nedbank-Green: #006341;
  --Heritage-Green: #004d36;
  --Contrast-Green: #003a29;
  --Black: #020202;
  --News-Green: #033a28;
  --Hover-White: #e8f2ef;
  --Footer-Green: #0a6241;
  --Neon-Green: #25e47c;
  --Sponsor-Green: #80c342;
  --large: @media (max-width: 1440px);
  --medium: @media (max-width: 1200px);
  --small: @media (max-width: 1024px);
  --tablet: @media (max-width: 768px);
  --phone: @media (max-width: 480px);
}

@font-face {
  font-family: "Libre Franklin";
  src: url("../../fonts/LibreFranklin.ttf") format("truetype"), url("LibreFranklin.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  margin: 0;
  font-family: Libre Franklin;
  background: var(--Good-Green);
}

p {
  margin: 0;
}

* {
  margin: 0;
}
*::before, *::after {
  margin: 0;
}

button {
  /* Reset default styles */
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  /* Additional styles */
  cursor: pointer; /* Ensure it looks clickable */
}
button:hover, button:focus {
  /* Reset hover and focus styles */
  background: none;
  border: none;
  outline: none;
}

a {
  /* Reset default styles */
  text-decoration: none; /* Remove underline */
  color: inherit; /* Inherit color from parent */
  /* Additional styles */
  cursor: pointer; /* Ensure it looks clickable */
}
a:hover {
  text-decoration: none; /* Underline on hover */
  color: var(--Go-Green, #00e677);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.button {
  display: flex;
  padding: 12px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  width: max-content;
  background-color: transparent;
  transition: background-color 0.3s, color 0.3s;
  text-align: center;
  font-family: Libre Franklin;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.2px;
  border: 1px solid var(--White, #fff);
}

.button:hover {
  color: var(--Contrast-Green, #003a29);
  background-color: var(--White, #fff);
}

.button.go-green {
  border: 2px solid var(--Go-Green, #00e677);
  color: var(--Go-Green, #00e677);
}
.button.go-green:hover {
  background-color: var(--Go-Green, #00e677);
  color: var(--Contrast-Green, #003a29);
}

.button.white {
  border: 2px solid var(--White, #fff);
  color: var(--White, #fff);
}
.button.white:hover {
  background-color: var(--White, #fff);
  color: var(--Good-Green, #10a867);
}

.button.contrast {
  border: 2px solid var(--Contrast-Green, #003a29);
  color: var(--Contrast-Green, #003a29);
}
.button.contrast:hover {
  background-color: var(--Contrast-Green, #003a29);
  color: var(--Go-Green, #00e677);
}

.banner {
  color: var(--White);
}

.banner.short {
  padding: 100px 18%;
}

.banner.top {
  padding: 200px 18%;
}

h1 {
  font-family: Libre Franklin;
  font-size: 70px;
  font-style: normal;
  font-weight: 100;
  line-height: normal;
  letter-spacing: -1.2px;
}

h2 {
  font-family: Libre Franklin;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.48px;
}

h3 {
  font-family: Libre Franklin;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.4px;
}

h4 {
  font-family: Libre Franklin;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.28px;
}

.indexes {
  display: none;
  justify-content: center;
  width: 100%;
  gap: 16px;
}
.indexes .index {
  width: 30px;
  height: 6px;
  border-radius: 18px;
  background: var(--Good-Green, #10a867);
}
.indexes .index.selected {
  width: 60px;
  background: var(--Green-Light, #00ff6a);
}

.scroll-to-top {
  position: fixed;
  display: flex;
  right: 5%;
  bottom: 10%;
  z-index: 3;
  width: 53px;
  height: 53px;
  border-radius: 50%;
  box-shadow: 0px 0px 5px #23252c;
  opacity: 0;
  transition: opacity 0.4s ease;
  background-color: var(--Footer-Green);
}
.scroll-to-top.active {
  opacity: 1;
}
.scroll-to-top::after {
  content: "";
  display: block;
  position: relative;
  top: 3px;
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--Neon-Green);
  border-top: 1px solid var(--Neon-Green);
  margin: auto;
  transform: rotate(-45deg);
}

.hero-banner .banner {
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  height: 500px;
  align-items: center;
  position: relative;
}

.hero-banner .banner:after {
  content: "";
  background-image: linear-gradient(90deg, rgba(0, 58, 41, 0.2) 0%, rgba(0, 58, 41, 0.2) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.hero-banner .banner .container {
  z-index: 2;
}

@media (max-width: 1440px) {
  .button {
    padding: 9px 18px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 70px;
    letter-spacing: -0.7px;
  }
  h2 {
    font-size: 40px;
    letter-spacing: -0.4px;
  }
  h3 {
    font-size: 32px;
    letter-spacing: -0.32px;
  }
  .banner.tall,
  .banner.short {
    padding: 74px 24px;
  }
  .scroll-to-top {
    bottom: 5%;
    right: 8%;
  }
}
/* ========== Floating banner ========== */
.nedbank-banner {
  position: fixed;
  left: 0;
  bottom: 3rem;
  z-index: 40;
  width: 60%;
  max-width: 450px;
  color: #022c22;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
  padding: 1.5rem 3rem 1rem;
  border-radius: 10px;
}

/*.nedbank-banner-card:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  transform: translateY(-1px);
  transition: all 150ms ease-out;
}*/
.nedbank-banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nedbank-banner-logo {
  display: none;
  /*width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ecfdf5;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 6px 14px rgba(5, 150, 105, 0.6);*/
}

.nedbank-banner-text {
  min-width: 0;
  font-family: Libre Franklin;
  font-size: 24px;
  font-weight: 500;
  color: #356343;
}

.nedbank-banner-eyebrow,
.nedbank-banner-title {
  display: inline;
}

/*.nedbank-banner-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0;
  color: #047857;
}

.nedbank-banner-title {
  margin: 1px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: #022c22;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}*/
.nedbank-banner-phone {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 50%;
  height: auto;
}

/* dismiss X on banner */
.nedbank-banner-dismiss {
  position: absolute;
  bottom: 6px;
  right: 6px;
  border: none;
  background: transparent;
  color: rgba(15, 23, 42, 0.55);
  font-size: 14px;
  line-height: 1;
  border-radius: 999px;
  padding: 4px;
  cursor: pointer;
}
.nedbank-banner-dismiss:hover {
  background: rgba(16, 185, 129, 0.06);
  color: rgba(15, 23, 42, 0.75);
}

/* store badges row under card on desktop, stack for mobile */
.nedbank-banner-badges {
  margin-top: 8px;
  gap: 6px;
}

.nedbank-banner-badges a {
  display: block;
}

@media (min-width: 480px) {
  .nedbank-banner-badges {
    display: flex;
  }
}
@media (min-width: 768px) {
  .nedbank-banner-card {
    max-width: 75%;
  }
  .nedbank-banner-phone {
    width: 193px;
  }
}
/* ========== Store badges (reused in modal) ========== */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  padding: 6px 10px;
  text-decoration: none;
  font-size: 11px;
  line-height: 1.1;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 5px 10px rgba(15, 23, 42, 0.15);
}

.store-badge span {
  display: block;
  opacity: 0.75;
}

.store-badge strong {
  display: block;
  font-size: 12px;
}

.store-badge-apple {
  background: #000;
  color: #fff;
}

.store-badge-google {
  background: #fff;
  color: #000;
}

.store-badge-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  background: rgba(15, 23, 42, 0.1);
}

/* ========== Modal ========== */
.nedbank-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
}

.nedbank-modal.is-open {
  display: flex;
}

.nedbank-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
}

.nedbank-modal-panel {
  position: relative;
  background: #e7f7f1;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  width: 80%;
  max-width: 733px;
  padding: 20px;
  z-index: 1;
  margin: 0 auto;
  background-image: linear-gradient(-19deg, rgba(0, 0, 0, 0.15) 15%, #e7f7f1 85%);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.nedbank-modal .nedbank-modal-panel {
  top: 50%;
}

.nedbank-modal.is-open .nedbank-modal-panel {
  top: 5%;
}

.nedbank-modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  border-radius: 999px;
  padding: 6px 10px;
  border: none;
  background: #ffffff;
  cursor: pointer;
  font-size: 14px;
}
.nedbank-modal-close:hover {
  background: rgba(209, 250, 229, 0.9);
}

/* modal grid 
.nedbank-modal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .nedbank-modal-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 30px;
  }
}
*/
.nedbank-modal-eyebrow,
.nedbank-modal-title {
  display: inline;
  font-family: Libre Franklin;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  color: #006341;
}

/*
.nedbank-modal-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #047857;
  margin: 4px 0;
}

.nedbank-modal-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  color: #022c22;
}

@media (min-width: 640px) {
  .nedbank-modal-title {
    font-size: 34px;
  }
}*/
.nedbank-modal-body,
.nedbank-modal-list li {
  font-family: Libre Franklin;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.4;
  color: #006341;
}

.nedbank-modal-badges {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nedbank-modal-list {
  padding-left: 18px;
}

.nedbank-modal-list li + li {
  margin-top: 4px;
}

/* image side */
.nedbank-modal-image-wrap {
  position: relative;
  min-height: 220px;
  text-align: center;
}

.nedbank-modal-phone {
  position: relative;
  display: block;
  height: 260px;
  max-height: 80%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .nedbank-modal-panel {
    padding: 38px;
  }
  .nedbank-modal-grid {
    max-width: 65%;
  }
  .nedbank-modal-body,
  .nedbank-modal-list li {
    max-width: 350px;
  }
  .nedbank-modal-phone {
    height: 430px;
  }
  .nedbank-modal-image-wrap {
    position: absolute;
    top: 60px;
    right: -50px;
  }
}
@media (min-width: 992px) {
  .nedbank-modal-phone {
    height: 530px;
  }
  .nedbank-modal-image-wrap {
    top: 32px;
    right: -100px;
  }
  .nedbank-modal-panel {
    padding: 50px;
  }
  .nedbank-modal-panel {
    padding: 50px;
  }
}
ul.nedbank-modal-list li {
  list-style: disc;
}

@media (max-width: 767px) {
  /* Floating banner */
  .nedbank-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
    max-width: none;
    padding: 0.9rem 1.1rem 0.7rem;
    border-radius: 10px;
  }
  .nedbank-banner-content {
    align-items: flex-start;
    gap: 8px;
  }
  .nedbank-banner-text {
    font-size: 16px;
    line-height: 1.3;
  }
  /* Phone image: make it smaller & not overflow */
  .nedbank-banner-phone {
    position: static;
    width: 26%;
    height: auto;
    margin-left: 242px;
    margin-bottom: -60px;
  }
  /* Dismiss button: move away from edges */
  .nedbank-banner-dismiss {
    bottom: 4px;
    right: 4px;
    font-size: 12px;
    padding: 3px 6px;
  }
  /* Badges: stack & full width tap targets 
  .nedbank-banner-badges {
      display: flex;
      flex-wrap: wrap;
      margin-top: 6px;
      gap: 6px;
  }*/
  .nedbank-banner-badges {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    width: 71%;
    margin-top: 10px;
  }
  .nedbank-banner-badges a {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .store-badge {
    width: 100%;
    justify-content: flex-start;
  }
  /* Modal: full-width with tighter padding */
  .nedbank-modal-panel {
    width: 94%;
    max-width: none;
    padding: 16px;
    border-radius: 16px;
  }
  .nedbank-modal-eyebrow,
  .nedbank-modal-title {
    font-size: 26px;
    line-height: 1.1;
  }
  .nedbank-modal-body,
  .nedbank-modal-list li {
    font-size: 14px;
    max-width: none;
  }
  /* Keep image inside panel instead of floating far out */
  .nedbank-modal-image-wrap {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 16px;
    min-height: 0;
  }
  .nedbank-modal-phone {
    height: 220px;
    max-height: 220px;
  }
}
/* ===============================
   VERY SMALL PHONES
   Up to 360px
   =============================== */
@media (max-width: 360px) {
  .nedbank-banner-text {
    font-size: 14px;
  }
  /* Option: hide phone image on ultra-small screens */
  .nedbank-banner-phone {
    display: none;
  }
  .nedbank-modal-eyebrow,
  .nedbank-modal-title {
    font-size: 22px;
  }
  .nedbank-modal-panel {
    padding: 12px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  /* Banner: a bit wider but not massive */
  .nedbank-banner {
    width: 70%;
    max-width: 520px;
    bottom: 1.5rem;
    padding: 1.1rem 1.5rem 0.9rem;
  }
  .nedbank-banner-text {
    font-size: 18px;
  }
  .nedbank-banner-phone {
    width: 45%;
    right: -6px;
  }
  /* Modal: comfortable width on tablets */
  .nedbank-modal-panel {
    width: 90%;
    max-width: 720px;
    padding: 28px;
  }
  .nedbank-modal-body,
  .nedbank-modal-list li {
    font-size: 15px;
    max-width: 420px;
  }
  .nedbank-modal-image-wrap {
    top: 40px;
    right: -30px;
  }
  .nedbank-modal-phone {
    height: 360px;
  }
}

/*# sourceMappingURL=main.css.map */
