/* ========== Brand Colors ========== */
:root {
  --blue-light: #209CD3;
  --blue-bright: #2EA2D6;
  --blue-medium: #3A6DB1;
  --blue-dark: #212187;
  --gray-dark: #605252;
  --orange-pop: #FF8000;
}

/* ========== Base Styles ========== */
body {
  font-family: 'Hind', sans-serif;
  margin: 0;
  padding: 10rem 0 0;
  line-height: 1.5;
  color: var(--gray-dark);
  background: white;
  opacity: 0;
  transition: opacity 0.4s ease-in;
}

body.page-loaded {
  opacity: 1;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Headings */
h1,
h2,
h3,
h4 {
  font-family: 'Bebas Neue', sans-serif;
  margin: 0;
  color: var(--blue-dark);
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }

  [data-page="home"] {
    margin-bottom: 4rem;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 769px) {
  h1 {
    font-size: 4rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 3rem;
    line-height: 1.2;
  }

  h3 {
    font-size: 2.5rem;
    line-height: 1.3;
  }

  h4 {
    font-size: 2rem;
    line-height: 1.3;
  }
}

span.light-blue {
  color: var(--blue-light);
}

span.light-blue {
  color: var(--blue-light);
}

span.orange-pop {
  color: var(--orange-pop);
}

.supporting-text {
  font-family: 'Hind', sans-serif;
  font-size: 1.25rem;
  color: #333;
  line-height: 1.6;
}

.supporting-text .highlight-blue {
  color: var(--blue-light);
  font-weight: 600;
}

/* Utility classes */
.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.flex-center {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Shared Container */
.container {
  flex-wrap: wrap;
  margin: 2rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (max-width: 768px) {
  .container {
    margin: 1rem;
  }
}

@media (max-width: 480px) {
  main[data-page="roadmap"] {
    margin-top: 10rem;
  }

  .secondary-container {
    padding: 2rem !important;
  }
}

.secondary-container {
  display: block;
  align-items: center;
  text-align: center;
  margin-bottom: 1.5rem;
  text-decoration: none;
  padding: 2rem 4rem;
}

/* Base Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  transition: background 0.2s ease;
  color: white;
  &:hover {
    color: white !important;
  }
}

.btn-light-blue {
  background-color: var(--blue-light);
}

.btn-light-blue:hover {
  background-color: #1a8ab9;
}

.btn-primary {
  background-color: var(--orange-pop);
}

.btn-primary:hover {
  background-color: #e67000;
}

.btn-secondary {
  background-color: var(--blue-medium);
}

.btn-secondary:hover {
  background-color: #345fa0;
}


/* ========== Header ========== */
.site-header {
  padding: 2rem;
  position: relative;
  box-shadow: 2px -3px 5px 5px rgba(0,0,0,0.5);
  background: var(--blue-dark);
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  width: calc(100% - 4rem);
  z-index: 10;
  position: fixed;
  top: 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 56px;
}

.nav-wrapper {
  color: white;

  &.active {
    .hamburger {
      .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
      }

      .bar:nth-child(2) {
        opacity: 0;
      }

      .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
      }
    }
  }

  .hamburger {
    display: none;
    cursor: pointer;

    .bar {
      width: 30px;
      height: 3px;
      background: white;
      margin: 5px 0;
      transition: 0.4s;
    }
  }
}

@media (min-width: 769px) {
  .nav-wrapper {
    .nav-links {
      margin-right: 1rem;
    }
  }
}

@media (max-width: 768px) {
  .nav-wrapper {
    justify-content: center;
    border-bottom-left-radius: 5px;
    flex-direction: column;

    &.active {
      .nav-menu {
        display: initial;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        padding: 2rem;
        background: var(--blue-dark);
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        box-shadow: -1px 4px 4px 0px rgba(0, 0, 0, 0.5);

        a.btn {
          margin-top: 2rem;
        }

        a:not(.btn) {
          margin-bottom: 0.5rem;
          color: white;
        }
      }
    }

    .nav-links {
      flex-direction: column;
    }

    .nav-menu {
      display: none;
      .flex-center {
        justify-content: center;
      }
    }

    .separator {
      display: none;
    }

    .hamburger {
      display: block;
      align-self: flex-end;
    }
  }
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.nav-menu li {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
}

.nav-menu a:not(.btn) {
  font-weight: 600;
  font-size: 1rem;
  padding: 0 0.5rem;
  border-bottom: 3px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--blue-bright);
  border-bottom-color: var(--blue-bright);
}

.separator {
  margin: 0 0.5rem;
  color: var(--orange-pop);
  user-select: none;
  font-weight: normal;
}

/* ========== Hero Section ========== */
.hero {
  background: #ffffff;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-left: 2rem;
}

.hero-container {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto;

  .hero-text {
    flex: 1;
    z-index: 1;
    padding-left: 3rem;
    margin-right: 0;

    p {
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }
  }

  .hero-image {
    flex: 1;
    opacity: 0.8;
  }
}

@media (max-width: 768px) {
  .hero-container {
    .hero-image {
      position: absolute;
      width: 50% !important;
      right: 0;
      top: 0;
    }

    .hero-text {
      padding: 0;
    }
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  .hero-container {
    .hero-image {
      width: 50%;
    }
  }
}

@media (max-width: 480px) {
  .hero-container {
    .hero-image {
      width: 75% !important;
      filter: blur(3px);
    }

    .hero-subtext {
      width: 50%;
    }

    .hero-text {
      text-shadow: 0 0 2px white;
    }
  }
}


.hero-intro {
  color: var(--blue-light);
  font-family: 'Anton', sans-serif;
  font-size: 3.5rem;
  display: block;
}

.hero-price {
  color: var(--blue-dark);
  font-family: 'Anton', sans-serif;
  font-size: 7rem;
  font-weight: bold;
  line-height: 1;
}

.hero-disclaim {
  color: var(--blue-dark);
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}

.hero-note {
  font-family: 'Hind', sans-serif;
  font-size: 1.25rem;
  color: var(--blue-light);
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.hero-note-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: left;
  text-align: left;
}

.hero-subtext {
  font-size: 0.9rem;
  color: var(--orange-pop);
  margin-top: 1rem;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  padding-left: 0;
}

.hero-image img {
  max-width: 100%;
  max-height: 50rem;
  height: auto;
  width: 100%;
  margin: 0;
  display: block;
}

.app-buttons img {
  height: 48px;
  margin: 1rem 0.5rem 0;
}

/* ========== Homepage ========== */
/* Feature Highlight */
.features {
  flex-direction: column;
  padding: 0 5rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .features {
    padding: 0 !important;
  }

  .flex-column-reverse-tablet {
    flex-direction: column-reverse;
  }

  .flex-column-tablet {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  [data-page="home"] {
    margin-top: 8rem;
  }
}

.features-cta {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.flex {
  display: flex;
  gap: 4rem;
}

.flex-1 {
  flex: 1;
}

.flex-reverse {
  flex-direction: row-reverse;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.margin-bottom-6 {
  margin-bottom: 6rem !important;
}

.margin-bottom-10 {
  margin-bottom: 10rem !important;
}

.width-100 {
  width: 100%;
}

.height-100 {
  height: 100%;
}

@media (max-width: 768px) {
  .feature-cards {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .flex-right {
    display: flex;
    flex-direction: column-reverse;
  }
}

.feature-cards img {
  margin: auto;
}

.feature-card {
  font-size: 1.3rem;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease;
  .flex-center {
    margin-bottom: 2rem;
  }
}

.feature-card .flex-center img {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  font-family: sans-serif;
  font-size: 1.25rem;
  color: var(--blue-dark);
}

.feature-card img.card-image {
  margin-top: auto;
  width: 100%;
  border-radius: 8px;
}

.feature-scroll-arrow {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--blue-medium);
  cursor: pointer;
}

/* ========== Pricing Section ========== */
@media (max-width: 480px) {
  .pricing {
    padding: 2rem !important;
  }
}

.pricing {
  background: white;
  padding: 4rem 5rem;
  text-align: center;
}

.pricing .container {
  flex-direction: column;
}

.pricing-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ========== Features Page ========== */
.user-roles {
  background-color: #ffffff;
  padding: 0 5rem 2rem 5rem;
}

@media (max-width: 480px) {
  .user-roles {
    padding: 2rem;
  }

  [data-page="features"] {
    margin-top: 4rem;
  }
}

.user-roles-header {
  text-align: center;
  margin-bottom: 4rem;
  flex-direction: column;
  align-items: center;
  display: flex;
}

/* Each mini section */
.role-section {
  margin-bottom: 5rem;
}

.role-section h3 img {
  width: 28px;
  height: 28px;
}

/* Two-column layout */
@media (max-width: 480px) { 
  .role-content {
    flex-direction: column;
  }
}

.role-content {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

@media (min-width: 481px) {
  .role-content.reverse {
    flex-direction: row-reverse;
  }
}

.role-content ul {
  flex: 1;
  list-style: disc;
  padding-left: 1.5rem;
  font-family: 'Hind', sans-serif;
  font-size: 1.1rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.role-content ul li {
  margin-bottom: 0.75rem;
}

.role-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.role-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Feature Button Group */
.feature-table-section {
  padding: 0 5rem 5rem 5rem;
  background-color: #ffffff;
}

@media (max-width: 480px) {
  .feature-table-section {
    padding: 2rem;
  }
}

.feature-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.filter-label {
  font-family: 'Anton', sans-serif;
  color: var(--blue-dark);
  font-size: 2rem;
  margin: 0;
}

#feature-category-filter {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: white;
  font-family: 'Hind', sans-serif;
  color: var(--gray-dark);
}

/* Feature Category Button Group */
#feature-category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.category-btn {
  padding: 0.5rem 1rem;
  font-family: 'Hind', sans-serif;
  font-size: 1rem;
  border: 1px solid var(--blue-light);
  border-radius: 6px;
  background-color: #ffffff;
  color: var(--blue-dark);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.category-btn:hover {
  background-color: var(--blue-light);
  color: #ffffff;
}

.category-btn.active {
  background-color: var(--blue-dark);
  color: #ffffff;
  border-color: var(--blue-dark);
}

html {
  scroll-behavior: smooth;
}

/* Table Headers */
.feature-table-headers {
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  /* display: flex; */
  font-family: 'Anton', sans-serif;
  font-size: 1.25rem;
  padding: 1rem;
  background: #f0f4f8;
  border-radius: 8px 8px 0 0;
  color: var(--blue-dark);
}

.feature-table-container {
  max-height: 500px;
  overflow-y: auto;
}

/* Table Body */
#feature-table-body {
  display: flex;
  flex-direction: column;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  padding: 1.25rem;
  background: white;
  gap: 1rem;
  border-bottom: 1px solid #eee;
}

.feature-row.alt {
  background-color: rgba(0, 0, 0, 0.1);
}

.feature-row>div {
  font-family: 'Hind', sans-serif;
  font-size: 1rem;
  color: var(--gray-dark);
  text-align: center;
}

.feature-suggestions {
  background-color: #f9fcfd;
  padding: 2rem 2rem;
  text-align: center;
}

.feature-suggestions .container {
  max-width: 1000px;
  flex-direction: column;
}

.custom-feature-callout {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.feature-suggestion-form input:invalid,
.feature-suggestion-form textarea:invalid {
  border-color: var(--orange-pop);
}

/* Suggestion Form */
.feature-suggestion-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-family: 'Hind', sans-serif;
}

.feature-suggestion-form .form-group {
  display: flex;
  flex-direction: column;
}

.feature-suggestion-form label {
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.feature-suggestion-form input,
.feature-suggestion-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: white;
  transition: border-color 0.3s, background-color 0.3s;
}

.feature-suggestion-form input:focus,
.feature-suggestion-form textarea:focus {
  border-color: var(--blue-light);
  background-color: #fff;
  outline: none;
}

.feature-suggestion-form textarea {
  resize: vertical;
  min-height: 120px;
}

.feature-suggestion-form .required {
  color: var(--orange-pop);
  margin-left: 0.25rem;
}

.feature-suggestion-form button[type="submit"] {
  align-self: flex-end;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background-color: var(--orange-pop);
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.feature-suggestion-form button[type="submit"]:hover {
  background-color: #e76f00;
}

.feature-suggestion-form .form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.feature-suggestion-form .form-row>.form-group {
  flex: 1 1 300px;
}

/* Keep other form groups full width */
.feature-suggestion-form .form-group:not(.inline) {
  width: 100%;
}

/* ========== Pricing Page ========== */
[data-page="pricing"] {
  @media (max-width: 480px) {
    .container {
      text-align: center;
    }
  }
}

.hero-pricing-section {
  margin: 4rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-pricing-cta {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

@media (max-width: 480px) {
  .hero-price-row {
    flex-direction: column;
    h1 {
      margin-left: 2rem;
    }
  }
}

.hero-price-row {
  display: flex;
}

.hero-price {
  font-size: 8rem;
  font-weight: bold;
}

.pricing-simple {
  background-color: #E9F9FE;
  padding: 4rem 2rem;
}

.pricing-simple .container {
  max-width: 800px;
  flex-direction: column;
  text-align: center;
}

.disclaimer {
  font-family: 'Hind', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-dark);
}

.pricing-detail-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

@media (max-width: 480px) {
  .pricing-detail-grid {
    grid-template-columns: 1fr !important;
  }
}

.pricing-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: clamp(960px, 90%, 1400px);
  margin: 0 auto;
}

.pricing-detail-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.mini-icon {
  width: 36px;
  height: 36px;
}

/* Guarantee Section */
.money-back-guarantee {
  background-color: #e9f9fe;
  padding: 4rem 2rem;
  text-align: center;
}

.guarantee-container {
  max-width: clamp(960px, 90%, 1400px);
  margin: 0 auto;
}

/* Account Estimate Section */
.account-estimate {
  background-color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
}

.account-estimate-header {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.account-estimate-subtext {
  font-family: 'Hind', sans-serif;
  font-size: 1.125rem;
  color: var(--orange-pop);
}

/* Slider Calculator Section */
.slider-section {
  background-color: #e9f9fe;
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.slider-container {
  flex: 1;
  position: relative;
  margin: 0 auto;
}

.slider-inner {
  position: relative;
  flex-grow: 1;
  max-width: 700px;
}

.slider-subtext {
  font-family: 'Hind', sans-serif;
  font-size: 1.1rem;
  color: var(--orange-pop);
  margin-bottom: 2rem;
}

/* Slider container with arrows */
.slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 2rem;
  max-width: 800px;
  padding: 0 1rem;
}

/* Arrow buttons */
.arrow-button {
  background: none;
  border: none;
  color: var(--blue-dark);
  font-size: 2.5rem;
  cursor: pointer;
  user-select: none;
  padding: 0;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.arrow-button:hover {
  color: var(--blue-light);
}

.arrow-button:focus {
  outline: 2px solid var(--blue-light);
  outline-offset: 2px;
}

/* Actual slider */
input[type="range"].account-slider {
  -webkit-appearance: none;
  /* for Chrome */
  appearance: none;
  width: 100%;
  height: 12px;
  border-radius: 6px;
  background: #ccc;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease-in-out;
}

/* Webkit track */
input[type="range"].account-slider::-webkit-slider-runnable-track {
  height: 12px;
  border-radius: 6px;
  background: transparent;
}

/* Webkit thumb */
input[type="range"].account-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background: var(--blue-dark);
  margin-top: -6px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

input[type="range"].account-slider::-webkit-slider-thumb:hover {
  background-color: var(--blue-medium);
}

/* Remove default track appearance for Firefox */
input[type="range"].account-slider::-moz-range-track {
  height: 12px;
  border-radius: 6px;
  background: transparent;
}

/* Firefox thumb */
input[type="range"].account-slider::-moz-range-thumb {
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background: var(--blue-dark);
  cursor: pointer;
  position: relative;
  z-index: 2;
}

input[type="range"].account-slider::-moz-range-thumb:hover {
  background-color: var(--blue-medium);
}

/* Slider selected value above the thumb */
.slider-value {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--blue-dark);
  position: absolute;
  top: -2.5rem;
  left: 0;
  transform: translateX(0%);
}

.account-count-display {
  font-family: 'Hind', sans-serif;
  font-size: 1.5rem;
  color: var(--blue-dark);
  margin-bottom: 1rem;
}

/* Reminders below slider */
.slider-reminders {
  margin-top: 1rem;
  margin: 0 auto 2rem;
  font-family: 'Hind', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-dark);
  max-width: 500px;
}

.slider-reminders .highlight {
  color: var(--blue-light);
  font-weight: bold;
}

/* Invoice-style box */
@media (min-width: 481px) {
  .invoice-box {
    max-width: 50%;
  }
}

@media (max-width: 480px) {
  .invoice-box {
    max-width: 100%;
  }
}

.invoice-box {
  background-color: white;
  border-radius: 12px;
  margin: 0 auto;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.63);
  text-align: left;
}

.invoice-box .invoice-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: right;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.invoice-box .invoice-label {
  justify-self: start;
}

.invoice-box .invoice-value {
  justify-self: end;
  font-weight: 700;
}

.invoice-box .invoice-divider {
  border-top: 3px solid var(--blue-light);
  margin: 1.5rem 0;
}

.invoice-box .invoice-total {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--blue-dark);
  text-align: right;
}

.invoice-box .invoice-note {
  font-size: 1rem;
  color: var(--blue-light);
  margin-top: 0.75rem;
  text-align: right;
}

.invoice-box .invoice-cta {
  margin-top: 1.5rem;
  text-align: right;
}

/* ========== FAQ ========== */
@media (max-width: 480px) {
  main[data-page="faq"] {
    margin-top: 6rem;
  }
}

.faq-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.faq-filter {
  background-color: transparent;
  border: 2px solid var(--blue-light);
  color: var(--blue-light);
  font-family: 'Hind', sans-serif;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-filter:hover,
.faq-filter.active {
  background-color: var(--blue-light);
  color: white;
}
/* ========== Careers Page ========== */
.supporting-text ul {
  list-style-type: none;
}

/* ========== Footer ========== */
.footer-cta {
  background-color: var(--blue-dark);
  padding: 2rem 5rem;
  color: white;
}

.footer-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cta-heading {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1rem;
  font-size: 1.75rem;
  color: var(--orange-pop);
  margin: 0;
}

.cta-subtext {
  font-family: 'Hind', sans-serif;
  font-size: 1.125rem;
  color: var(--blue-light);
  margin: 0.25rem 0 0;
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 70%;
}

.footer-main {
  background-color: var(--blue-medium);
  padding: 1rem;
  color: white;
  margin: 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 40px
}

.footer-left {
  max-width: 40%;
}

.footer-logo {
  height: 48px;
  margin-bottom: 1rem;
}

.contact-info {
  font-size: 0.95rem;
  line-height: 1.5;
  color: white;
  margin: 0;
}

.footer-column {
  display: block;
  justify-content: space-between;
}

.footer-column h4 {
  font-family: 'Bebas Neue', 'sans-serif';
  position: relative;
  color: var(--orange-pop);
  text-align: center;
}

/* Footer list links hover effect */
.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-links ul li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--orange-pop);
  /* changes color on hover */
  text-decoration: underline;
  /* adds underline on hover */
}