/* =========================================================
   BEXFORD — MAINLAND COMPANY FORMATION HERO
   Same design system as Index Hero
   ========================================================= */

.bexford-mainland-hero {
  position: relative;

  width: 100%;
  min-height: 100vh;

  overflow: hidden;

  display: flex;
  align-items: center;

  background: #002d1b;

  color: #ffffff;
}


/* =========================================================
   BACKGROUND IMAGE
   Image is added in HTML
   ========================================================= */

.bexford-mainland-hero .bexford-hero__bg {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center center;

  z-index: 0;
}


/* =========================================================
   DARK GREEN OVERLAY
   ========================================================= */

.bexford-mainland-hero .bexford-hero__overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    linear-gradient(90deg,
      rgba(0, 35, 20, 0.96) 0%,
      rgba(0, 45, 27, 0.91) 32%,
      rgba(0, 45, 27, 0.78) 62%,
      rgba(0, 35, 20, 0.80) 100%);
}


/* =========================================================
   HERO CONTAINER
   ========================================================= */

.bexford-mainland-hero .bexford-hero__container {
  position: relative;

  z-index: 2;

  width: min(1500px, calc(100% - 100px));

  min-height: 100vh;

  margin: 0 auto;

  display: flex;

  align-items: center;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.bexford-mainland-hero .bexford-hero__content {
  width: 1200px;

  max-width: 100%;

  padding-top: 70px;
}


/* =========================================================
   H1
   ========================================================= */

.bexford-mainland-hero h1 {
  max-width: 1100px;

  margin: 0 0 30px;

  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;

  font-size: 40px !important;

  line-height: 0.96;

  letter-spacing: -1px;

  font-weight: 700;

  font-style: normal;

  color: #ffffff;
}


/* Gold highlighted word */

.bexford-mainland-hero h1 span {
  color: #d4af37;

  font-weight: 700;

  font-style: normal;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.bexford-mainland-hero .bexford-hero__text {
  max-width: 900px;

  margin: 0 0 24px;
}


.bexford-mainland-hero .bexford-hero__text p {
  margin: 0;

  color: rgba(255, 255, 255, 0.92);

  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;

  font-size: 17px;

  line-height: 1.58;

  font-weight: 400;

  font-style: normal;
}


/* Small gap between paragraphs */

.bexford-mainland-hero .bexford-hero__text p+p {
  margin-top: 7px;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.bexford-mainland-hero .bexford-hero__benefits {
  display: grid;

  grid-template-columns: repeat(2, max-content);

  column-gap: 42px;

  row-gap: 11px;

  margin: 22px 0 28px;
}


.bexford-mainland-hero .bexford-hero__benefit {
  display: flex;

  align-items: center;

  gap: 10px;

  min-height: 25px;
}


/* Check icon */

.bexford-mainland-hero .bexford-hero__benefit span {
  width: 23px;
  height: 23px;

  flex: 0 0 23px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(212, 175, 55, 0.16);

  color: #d4af37;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 13px;

  line-height: 1;

  font-weight: 700;

  font-style: normal;
}


.bexford-mainland-hero .bexford-hero__benefit p {
  margin: 0;

  color: #ffffff;

  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;

  font-size: 15px;

  line-height: 1.4;

  font-weight: 500;

  font-style: normal;
}


/* =========================================================
   BUTTON WRAPPER
   ========================================================= */

.bexford-mainland-hero .bexford-hero__buttons {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-top: 5px;
}


/* =========================================================
   COMMON BUTTON
   ========================================================= */

.bexford-mainland-hero .bexford-btn {
  min-height: 58px;

  padding: 0 31px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  border-radius: 999px;

  text-decoration: none;

  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;

  font-size: 16px;

  line-height: 1;

  font-weight: 600;

  font-style: normal;

  white-space: nowrap;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.bexford-mainland-hero .bexford-btn--primary {
  background: #d4af37;

  border: 2px solid #d4af37;

  color: #00351f;

  box-shadow: none;
}


.bexford-mainland-hero .bexford-btn--primary:hover {
  background: #ffffff;

  border-color: #ffffff;

  color: #00351f;

  transform: translateY(-3px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   SECONDARY BUTTON
   ========================================================= */

.bexford-mainland-hero .bexford-btn--secondary {
  background: transparent;

  border: 2px solid rgba(255, 255, 255, 0.95);

  color: #ffffff;
}


.bexford-mainland-hero .bexford-btn--secondary:hover {
  background: #ffffff;

  border-color: #ffffff;

  color: #00351f;

  transform: translateY(-3px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   BUTTON ARROW
   ========================================================= */

.bexford-mainland-hero .bexford-btn span {
  display: inline-block;

  font-size: 21px;

  line-height: 1;

  transition: transform 0.3s ease;
}


.bexford-mainland-hero .bexford-btn:hover span {
  transform: translateX(5px);
}


/* =========================================================
   LARGE DESKTOP
   1440px+
   ========================================================= */

@media (min-width: 1440px) {

  .bexford-mainland-hero .bexford-hero__container {
    width: min(1600px, calc(100% - 120px));
  }

  .bexford-mainland-hero .bexford-hero__content {
    padding-top: 80px;
  }

  .bexford-mainland-hero h1 {
    font-size: clamp(85px, 7vw, 125px);

    max-width: 1300px;
  }

  .bexford-mainland-hero .bexford-hero__text {
    max-width: 950px;
  }

}


/* =========================================================
   27" / LARGE MONITOR
   ========================================================= */

@media (min-width: 1800px) {

  .bexford-mainland-hero .bexford-hero__container {
    width: min(1700px, calc(100% - 140px));
  }

  .bexford-mainland-hero h1 {
    font-size: 120px;

    max-width: 1400px;
  }

  .bexford-mainland-hero .bexford-hero__text p {
    font-size: 18px;
  }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .bexford-mainland-hero .bexford-hero__container {
    width: calc(100% - 60px);
  }

  .bexford-mainland-hero .bexford-hero__content {
    width: 850px;

    padding-top: 60px;
  }

  .bexford-mainland-hero h1 {
    font-size: clamp(58px, 7vw, 82px);

    line-height: 0.99;

    letter-spacing: -3px;

    max-width: 900px;
  }

  .bexford-mainland-hero .bexford-hero__text {
    max-width: 760px;
  }

  .bexford-mainland-hero .bexford-hero__text p {
    font-size: 16px;
  }

}


/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 900px) {

  .bexford-mainland-hero {
    min-height: 850px;
  }

  .bexford-mainland-hero .bexford-hero__container {
    min-height: 850px;
  }

  .bexford-mainland-hero .bexford-hero__benefits {
    column-gap: 25px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

  .bexford-mainland-hero {
    min-height: 100svh;

    align-items: center;
  }

  .bexford-mainland-hero .bexford-hero__bg {
    object-position: 60% center;
  }

  .bexford-mainland-hero .bexford-hero__overlay {
    background:
      linear-gradient(90deg,
        rgba(0, 35, 20, 0.94) 0%,
        rgba(0, 45, 27, 0.88) 100%);
  }

  .bexford-mainland-hero .bexford-hero__container {
    width: calc(100% - 36px);

    min-height: 100svh;
  }

  .bexford-mainland-hero .bexford-hero__content {
    width: 100%;

    padding-top: 75px;
    padding-bottom: 45px;
  }

  .bexford-mainland-hero h1 {
    max-width: 100%;

    margin-bottom: 22px;

    font-size: clamp(42px, 11vw, 58px);

    line-height: 1.03;

    letter-spacing: -1.5px;
  }

  .bexford-mainland-hero .bexford-hero__text {
    max-width: 100%;

    margin-bottom: 20px;
  }

  .bexford-mainland-hero .bexford-hero__text p {
    font-size: 15px;

    line-height: 1.58;
  }

  .bexford-mainland-hero .bexford-hero__text p+p {
    margin-top: 8px;
  }

  .bexford-mainland-hero .bexford-hero__benefits {
    grid-template-columns: 1fr;

    column-gap: 0;

    row-gap: 9px;

    margin: 20px 0 25px;
  }

  .bexford-mainland-hero .bexford-hero__benefit {
    gap: 9px;
  }

  .bexford-mainland-hero .bexford-hero__benefit p {
    font-size: 14px;
  }

  .bexford-mainland-hero .bexford-hero__buttons {
    flex-direction: column;

    align-items: stretch;

    gap: 12px;

    margin-top: 5px;
  }

  .bexford-mainland-hero .bexford-btn {
    width: 100%;

    min-height: 55px;

    padding: 0 22px;

    font-size: 15px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .bexford-mainland-hero .bexford-hero__container {
    width: calc(100% - 28px);
  }

  .bexford-mainland-hero .bexford-hero__content {
    padding-top: 70px;
    padding-bottom: 35px;
  }

  .bexford-mainland-hero h1 {
    font-size: 40px;

    line-height: 1.04;

    letter-spacing: -1px;
  }

  .bexford-mainland-hero .bexford-hero__text p {
    font-size: 14px;

    line-height: 1.55;
  }

  .bexford-mainland-hero .bexford-hero__benefit p {
    font-size: 13.5px;
  }

  .bexford-mainland-hero .bexford-btn {
    min-height: 53px;

    font-size: 14px;
  }

}

/* =========================================
   HOW WE HELP – BANKING SECTION
========================================= */

.banking-help {
  --bg: #004225;
  --bg-dark: #00351e;
  --surface: #0a5135;
  --surface-light: #0d5e3e;
  --ivory: #fffff0;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.25);

  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 85% 50%,
      rgba(212, 175, 55, 0.06),
      transparent 35%),
    var(--bg);

  color: var(--ivory);

  padding: 130px 7%;
}


/* =========================================
   DECORATIVE ORBITS
========================================= */

.banking-orbit {
  position: absolute;

  border: 1px solid rgba(212, 175, 55, 0.08);

  border-radius: 50%;

  pointer-events: none;
}

.banking-orbit--one {
  width: 650px;
  height: 650px;

  right: -300px;
  top: 10%;

  animation: orbitRotate 30s linear infinite;
}

.banking-orbit--two {
  width: 420px;
  height: 420px;

  right: -180px;
  top: 25%;

  border-color: rgba(255, 255, 240, 0.05);

  animation: orbitRotateReverse 22s linear infinite;
}


@keyframes orbitRotate {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}


@keyframes orbitRotateReverse {

  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }

}


/* =========================================
   CONTAINER
========================================= */

.banking-help__container {
  position: relative;
  z-index: 2;

  max-width: 1400px;

  margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.banking-help__header {
  max-width: 750px;

  margin-bottom: 90px;
}

.banking-help__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: var(--gold);

  font-family: "Inter", sans-serif;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 3px;
  text-transform: uppercase;

  margin-bottom: 20px;
}

.banking-help__eyebrow::before {
  content: "";

  width: 35px;
  height: 1px;

  background: var(--gold);
}


.banking-help__header h2 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(55px, 6vw, 90px);

  line-height: 0.95;

  font-weight: 500;

  letter-spacing: -2px;
}

.banking-help__header h2 em {
  color: var(--gold);

  font-style: normal;
}


.banking-help__header p {
  max-width: 650px;

  margin-top: 30px;

  color: rgba(255, 255, 240, 0.68);

  font-family: "Inter", sans-serif;

  font-size: 17px;

  line-height: 1.8;
}


/* =========================================
   MAIN LAYOUT
========================================= */

.banking-help__layout {

  display: grid;

  grid-template-columns:
    minmax(280px, 0.75fr) minmax(500px, 1.25fr);

  gap: 100px;

  align-items: start;
}


/* =========================================
   LEFT INTRO
========================================= */

.banking-help__intro {
  position: sticky;

  top: 100px;

  padding: 45px 0;
}


.banking-help__number {

  width: 70px;
  height: 70px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid var(--gold);

  border-radius: 50%;

  color: var(--gold);

  font-family: "Inter", sans-serif;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 40px;

  box-shadow:
    0 0 35px rgba(212, 175, 55, 0.12);

  transition: 0.4s ease;
}


.banking-help__intro:hover .banking-help__number {

  background: var(--gold);

  color: var(--bg);

  transform: rotate(360deg);

  box-shadow:
    0 0 50px rgba(212, 175, 55, 0.3);

}


.banking-help__intro h3 {

  margin: 0;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(55px, 5vw, 78px);

  font-weight: 500;

  line-height: 0.9;

  letter-spacing: -2px;
}


.banking-help__intro h3 span {

  color: var(--gold);

  font-style: normal;

}


.banking-help__intro p {

  max-width: 400px;

  margin-top: 35px;

  color: rgba(255, 255, 240, 0.62);

  font-family: "Inter", sans-serif;

  font-size: 15px;

  line-height: 1.8;
}


.banking-help__line {

  width: 100%;

  max-width: 380px;

  height: 1px;

  margin: 45px 0 25px;

  background:
    linear-gradient(90deg,
      var(--gold),
      transparent);
}


.banking-help__label {

  display: flex;

  align-items: center;

  gap: 12px;

  color: rgba(255, 255, 240, 0.5);

  font-family: "Inter", sans-serif;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;
}


.pulse-dot {

  width: 7px;
  height: 7px;

  background: var(--gold);

  border-radius: 50%;

  box-shadow:
    0 0 0 5px rgba(212, 175, 55, 0.1),
    0 0 20px rgba(212, 175, 55, 0.6);

  animation: pulseGlow 2s infinite;
}


@keyframes pulseGlow {

  0%,
  100% {
    box-shadow:
      0 0 0 5px rgba(212, 175, 55, 0.1),
      0 0 20px rgba(212, 175, 55, 0.5);
  }

  50% {
    box-shadow:
      0 0 0 10px rgba(212, 175, 55, 0.02),
      0 0 35px rgba(212, 175, 55, 0.8);
  }

}


/* =========================================
   FEATURES
========================================= */

.banking-help__features {

  display: flex;

  flex-direction: column;

  gap: 20px;
}


/* =========================================
   FEATURE CARD
========================================= */

.banking-feature {

  position: relative;

  display: grid;

  grid-template-columns: 75px 1fr 40px;

  align-items: center;

  gap: 30px;

  min-height: 190px;

  padding: 35px 40px;

  background:
    linear-gradient(135deg,
      rgba(255, 255, 240, 0.035),
      rgba(255, 255, 240, 0.015));

  border: 1px solid rgba(255, 255, 240, 0.08);

  border-radius: 24px;

  overflow: hidden;

  transition:
    transform 0.5s cubic-bezier(.2, .8, .2, 1),
    border-color 0.5s ease,
    background 0.5s ease,
    box-shadow 0.5s ease;
}


/* Gold light sweep */

.banking-feature::before {

  content: "";

  position: absolute;

  top: 0;
  left: -100%;

  width: 60%;
  height: 100%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(212, 175, 55, 0.06),
      transparent);

  transform: skewX(-20deg);

  transition: left 0.8s ease;

}


.banking-feature:hover::before {

  left: 130%;

}


.banking-feature:hover {

  transform: translateX(12px);

  border-color:
    rgba(212, 175, 55, 0.55);

  background:
    linear-gradient(135deg,
      rgba(10, 81, 53, 0.9),
      rgba(13, 94, 62, 0.55));

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 0 35px rgba(212, 175, 55, 0.07);
}


/* =========================================
   NUMBER ICON
========================================= */

.banking-feature__icon {

  width: 65px;
  height: 65px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(212, 175, 55, 0.3);

  border-radius: 50%;

  color: var(--gold);

  font-family: "Inter", sans-serif;

  font-size: 13px;
  font-weight: 700;

  transition: 0.5s ease;
}


.banking-feature:hover .banking-feature__icon {

  background: var(--gold);

  color: var(--bg);

  transform: rotate(360deg) scale(1.08);

  box-shadow:
    0 0 35px rgba(212, 175, 55, 0.3);
}


/* =========================================
   CONTENT
========================================= */

.banking-feature__content h3 {

  margin: 0 0 12px;

  color: var(--ivory);

  font-family: "Cormorant Garamond", serif;

  font-size: 28px;

  font-weight: 500;
}


.banking-feature__content p {

  max-width: 600px;

  margin: 0;

  color: rgba(255, 255, 240, 0.6);

  font-family: "Inter", sans-serif;

  font-size: 14px;

  line-height: 1.7;

  transition: color 0.4s ease;
}


.banking-feature:hover .banking-feature__content p {

  color: rgba(255, 255, 240, 0.82);

}


/* =========================================
   ARROW
========================================= */

.banking-feature__arrow {

  display: flex;

  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border: 1px solid rgba(212, 175, 55, 0.2);

  border-radius: 50%;

  color: var(--gold);

  font-size: 18px;

  transition: 0.4s ease;
}


.banking-feature:hover .banking-feature__arrow {

  background: var(--gold);

  color: var(--bg);

  transform: translate(4px, -4px);

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

  .banking-help {

    padding: 100px 6%;

  }

  .banking-help__layout {

    grid-template-columns: 1fr;

    gap: 50px;

  }

  .banking-help__intro {

    position: relative;

    top: auto;

    padding: 0;

  }

  .banking-help__intro h3 {

    font-size: 65px;

  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

  .banking-help {

    padding: 80px 20px;

  }


  .banking-help__header {

    margin-bottom: 55px;

  }


  .banking-help__header h2 {

    font-size: 54px;

    letter-spacing: -1px;

  }


  .banking-help__header p {

    font-size: 14px;

    line-height: 1.7;

  }


  .banking-help__intro {

    padding: 0;

  }


  .banking-help__number {

    width: 55px;
    height: 55px;

    margin-bottom: 30px;

  }


  .banking-help__intro h3 {

    font-size: 55px;

  }


  .banking-help__intro p {

    font-size: 14px;

  }


  .banking-help__features {

    gap: 15px;

  }


  .banking-feature {

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 28px 22px;

    min-height: auto;

    border-radius: 18px;

  }


  .banking-feature__icon {

    width: 50px;
    height: 50px;

    font-size: 11px;

  }


  .banking-feature__content h3 {

    font-size: 24px;

  }


  .banking-feature__content p {

    font-size: 13px;

    line-height: 1.65;

  }


  .banking-feature__arrow {

    display: none;

  }


  .banking-feature:hover {

    transform: translateY(-5px);

  }


  .banking-orbit--one {

    width: 400px;
    height: 400px;

    right: -250px;

  }


  .banking-orbit--two {

    width: 280px;
    height: 280px;

    right: -180px;

  }

}

/* =========================================================
   BEXFORD BANKING OPTIONS
   ========================================================= */

.banking-options {
  --bg: #004225;
  --ivory: #FFFFF0;
  --gold: #D4AF37;

  position: relative;
  width: 100%;
  min-height: 100vh;

  padding: 120px 6vw;

  background:
    radial-gradient(circle at 50% 40%,
      rgba(212, 175, 55, 0.06),
      transparent 40%),
    var(--bg);

  overflow: hidden;
}


/* =========================================================
   HEADER
   ========================================================= */

.banking-header {
  max-width: 850px;
  margin: 0 auto 70px;

  text-align: center;

  position: relative;
  z-index: 2;
}

.banking-eyebrow {
  display: inline-block;

  margin-bottom: 18px;

  color: var(--gold);

  font-family: "Inter", sans-serif;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.banking-header h2 {
  margin: 0;

  color: var(--ivory);

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(48px, 6vw, 82px);

  font-weight: 500;

  line-height: 0.95;

  letter-spacing: -0.03em;
}

.banking-header h2 span {
  display: block;

  color: var(--gold);

  font-style: normal;
}

.banking-header p {
  max-width: 600px;

  margin: 25px auto 0;

  color: rgba(255, 255, 240, 0.72);

  font-family: "Inter", sans-serif;

  font-size: 16px;

  line-height: 1.7;
}


/* =========================================================
   CARDS WRAPPER
   ========================================================= */

.banking-cards {
  width: 100%;

  max-width: 1450px;

  height: 570px;

  margin: 0 auto;

  display: flex;

  gap: 14px;

  align-items: stretch;
}


/* =========================================================
   CARD
   ========================================================= */

.banking-card {
  position: relative;

  flex: 1;

  min-width: 0;

  height: 100%;

  overflow: hidden;

  border-radius: 22px;

  border: 1px solid rgba(212, 175, 55, 0.18);

  background: #063d27;

  cursor: pointer;

  transition:
    flex 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s ease;
}


/* =========================================================
   IMAGE
   ========================================================= */

.banking-card img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: 0.7;

  filter: saturate(0.9);

  transform: scale(1.05);

  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease,
    filter 0.6s ease;
}


/* =========================================================
   DARK OVERLAY
   ========================================================= */

.banking-overlay {
  position: absolute;

  inset: 0;


}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.banking-content {
  position: absolute;

  inset: auto 28px 60px;

  z-index: 2;
}


/* NUMBER */

.banking-number {
  margin-bottom: 15px;

  color: var(--gold);

  font-family: "Inter", sans-serif;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.15em;

  opacity: 0;

  transform: translateY(15px);

  transition:
    opacity 0.4s ease,
    transform 0.5s ease;
}


/* TITLE */

.banking-content h3 {
  margin: 0;

  color: var(--ivory);

  font-family: "Cormorant Garamond", serif;

  font-size: 32px;

  font-weight: 500;

  line-height: 1.05;

  transition:
    color 0.4s ease,
    transform 0.5s ease;
}


/* DESCRIPTION */

.banking-content p {
  max-width: 420px;

  margin: 18px 0 0;

  color: rgba(255, 255, 240, 0.78);

  font-family: "Inter", sans-serif;

  font-size: 14px;

  line-height: 1.7;

  opacity: 0;

  transform: translateY(25px);

  transition:
    opacity 0.5s ease 0.15s,
    transform 0.6s ease 0.15s;
}


/* =========================================================
   HOVER EFFECT
   ========================================================= */

.banking-cards:hover .banking-card {
  flex: 0.75;
}


/* HOVERED CARD EXPANDS */

.banking-card:hover {
  flex: 2.3 !important;

  border-color: rgba(212, 175, 55, 0.8);

  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.25),
    0 0 50px rgba(212, 175, 55, 0.12);

  transform: translateY(-6px);

  z-index: 5;
}


/* IMAGE ZOOM */

.banking-card:hover img {
  transform: scale(1.12);

  opacity: 1;

  filter: saturate(1);
}


/* GOLDEN OVERLAY */

.banking-card:hover .banking-overlay {
  background:
    linear-gradient(to top,
      rgba(0, 25, 16, 0.85) 0%,
      rgba(0, 25, 16, 0.4) 55%,
      transparent 100%);
}


/* SHOW NUMBER */

.banking-card:hover .banking-number {
  opacity: 1;

  transform: translateY(0);
}


/* SHOW DESCRIPTION */

.banking-card:hover .banking-content p {
  opacity: 1;

  transform: translateY(0);
}


/* TITLE GOLD */

.banking-card:hover .banking-content h3 {
  color: var(--gold);
}


/* =========================================================
   DEFAULT STATE
   Only title visible
   ========================================================= */

.banking-card:not(:hover) .banking-content p {
  opacity: 0;

  max-height: 0;

  overflow: hidden;
}


/* =========================================================
   DECORATIVE GOLD LINE
   ========================================================= */

.banking-card::after {
  content: "";

  position: absolute;

  left: 28px;
  right: 28px;

  bottom: 20px;

  height: 1px;

  background: linear-gradient(90deg,
      transparent,
      rgba(212, 175, 55, 0.6),
      transparent);

  opacity: 0;

  transform: scaleX(0);

  transition:
    opacity 0.4s ease,
    transform 0.6s ease;
}

.banking-card:hover::after {
  opacity: 1;

  transform: scaleX(1);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .banking-options {
    padding: 90px 4vw;
  }

  .banking-cards {
    height: 500px;
  }

  .banking-content {
    inset: auto 20px 45px;
  }

  .banking-content h3 {
    font-size: 26px;
  }

  .banking-content p {
    font-size: 13px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

  .banking-options {
    padding: 80px 20px;
  }

  .banking-header {
    margin-bottom: 45px;
  }

  .banking-header h2 {
    font-size: 52px;
  }

  .banking-header p {
    font-size: 14px;
  }


  /* STACK CARDS */

  .banking-cards {
    height: auto;

    display: flex;

    flex-direction: column;

    gap: 14px;
  }


  /* MOBILE CARD */

  .banking-card,
  .banking-cards:hover .banking-card,
  .banking-card:hover {
    flex: none !important;

    width: 100%;

    height: 115px;

    min-height: 115px;

    transform: none;

    border-radius: 18px;

    transition:
      height 0.6s ease,
      min-height 0.6s ease,
      border-color 0.4s ease,
      box-shadow 0.4s ease;
  }


  /* IMAGE */

  .banking-card img {
    opacity: 0.25;
  }


  /* CONTENT */

  .banking-content {
    inset: 0 24px;

    display: flex;

    flex-direction: column;

    justify-content: center;
  }


  .banking-number {
    display: none;
  }


  .banking-content h3 {
    font-size: 28px;
  }


  /* DESCRIPTION HIDDEN */

  .banking-content p {
    margin-top: 12px;

    max-height: 0;

    opacity: 0;

    overflow: hidden;

    transform: translateY(10px);

    transition:
      max-height 0.5s ease,
      opacity 0.4s ease,
      transform 0.5s ease;
  }


  /* MOBILE HOVER / TOUCH */

  .banking-card:hover,
  .banking-card:focus-within {
    height: 260px !important;

    min-height: 260px !important;

    border-color: rgba(212, 175, 55, 0.7);

    box-shadow:
      0 15px 40px rgba(0, 0, 0, 0.25),
      0 0 35px rgba(212, 175, 55, 0.1);
  }


  .banking-card:hover img {
    opacity: 0.45;

    transform: scale(1.08);
  }


  .banking-card:hover .banking-content {
    justify-content: flex-end;

    padding-bottom: 40px;
  }


  .banking-card:hover .banking-content p {
    max-height: 130px;

    opacity: 1;

    transform: translateY(0);
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .banking-options {
    padding: 65px 16px;
  }

  .banking-header h2 {
    font-size: 44px;
  }

  .banking-card,
  .banking-cards:hover .banking-card,
  .banking-card:hover {
    height: 105px;

    min-height: 105px;
  }

  .banking-card:hover {
    height: 270px !important;

    min-height: 270px !important;
  }

  .banking-content h3 {
    font-size: 25px;
  }

  .banking-content p {
    font-size: 13px;

    line-height: 1.6;
  }

}

/* =====================================================
   KEY FACTS — PREMIUM BEXFORD DESIGN
===================================================== */

.key-facts-section {

  --primary-bg: #004225;
  --secondary-ivory: #FFFFF0;
  --accent-gold: #D4AF37;

  position: relative;

  overflow: hidden;

  background: var(--primary-bg);

  color: var(--secondary-ivory);

  padding:
    130px 7vw;

}


/* =====================================================
   SUBTLE BACKGROUND DETAIL
===================================================== */

.key-facts-section::before {

  content: "";

  position: absolute;

  width: 700px;

  height: 700px;

  right: -350px;

  top: -300px;

  border:

    1px solid rgba(212,
      175,
      55,
      0.12);

  border-radius: 50%;

  box-shadow:

    0 0 0 80px rgba(212,
      175,
      55,
      0.025),

    0 0 0 160px rgba(212,
      175,
      55,
      0.015);

  pointer-events: none;

}


.key-facts-section::after {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 1px;

  background:

    linear-gradient(90deg,

      transparent,

      rgba(212,
        175,
        55,
        0.5),

      transparent);

  opacity: 0.5;

}



/* =====================================================
   CONTAINER
===================================================== */

.key-facts-container {

  position: relative;

  z-index: 2;

  max-width: 1250px;

  margin: 0 auto;

}

.key-facts-heading span {
  color: var(--accent-gold);
}



/* =====================================================
   HEADING
===================================================== */

.key-facts-heading {

  display: flex;

  align-items: center;

  gap: 22px;

  margin-bottom: 70px;

}


.key-facts-line {

  display: block;

  width: 55px;

  height: 1px;

  background:

    var(--accent-gold);

  transform-origin: left;

  animation:

    keyFactsLine 1s ease forwards;

}


.key-facts-heading h2 {

  margin: 0;

  font-family:

    "Cormorant Garamond",
    Georgia,
    serif;

  font-size:

    clamp(55px,
      7vw,
      95px);

  font-weight: 500;

  line-height: 0.9;

  letter-spacing: -2px;

  color:

    var(--secondary-ivory);

}



/* =====================================================
   FACTS LIST
===================================================== */

.key-facts-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  border: none;
}



/* =====================================================
   FACT ITEM
===================================================== */

.key-fact-item {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 50px 45px;
  background: linear-gradient(135deg, rgba(255, 255, 240, 0.04), rgba(255, 255, 240, 0.01));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 24px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.key-fact-item:nth-child(even) {
  transform: translateY(40px);
}

.key-fact-item::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transition: transform 0.6s ease;
  pointer-events: none;
}

.key-fact-item:hover {
  background: linear-gradient(135deg, rgba(255, 255, 240, 0.07), rgba(255, 255, 240, 0.02));
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 175, 55, 0.1);
}

.key-fact-item:nth-child(even):hover {
  transform: translateY(32px);
}

.key-fact-item:hover::before {
  transform: scale(1.5);
}



/* =====================================================
   NUMBER
===================================================== */

.key-fact-number {
  font-family: "Inter", Arial, sans-serif;
  font-size: 35px;
  line-height: 1;
  font-weight: 600;
  color: rgba(212, 175, 55, 0.8);
  margin-bottom: 25px;
  transition: color 0.5s ease, transform 0.5s ease;
}

.key-fact-item:hover .key-fact-number {
  color: rgba(212, 175, 55, 1);
  transform: scale(1.05) translateX(5px);
}

/* =====================================================
   FACT CONTENT
===================================================== */

.key-fact-content {
  position: relative;
}

.key-fact-content p {
  margin: 0;
  max-width: 450px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  color: rgba(255, 255, 240, 0.72);
  transition: color 0.4s ease;
}

.key-fact-item:hover .key-fact-content p {
  color: var(--secondary-ivory);
}



/* =====================================================
   ANIMATION
===================================================== */

.key-facts-heading {

  opacity: 0;

  transform:

    translateY(30px);

  animation:

    keyFactsReveal 0.9s cubic-bezier(0.22,
      1,
      0.36,
      1) forwards;

}


.key-fact-item {

  opacity: 0;

  transform:

    translateY(35px);

  animation:

    keyFactCardReveal 0.8s cubic-bezier(0.22,
      1,
      0.36,
      1) forwards;

}


.key-fact-item:nth-child(1) {

  animation-delay:
    0.15s;

}


.key-fact-item:nth-child(2) {

  animation-delay:
    0.25s;

}


.key-fact-item:nth-child(3) {

  animation-delay:
    0.35s;

}


.key-fact-item:nth-child(4) {

  animation-delay:
    0.45s;

}


@keyframes keyFactsReveal {

  to {

    opacity: 1;

    transform:

      translateY(0);

  }

}


@keyframes keyFactCardReveal {

  to {

    opacity: 1;

    transform:

      translateY(0);

  }

}


@keyframes keyFactsLine {

  from {

    transform:

      scaleX(0);

  }

  to {

    transform:

      scaleX(1);

  }

}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {
  .key-facts-section {
    padding: 100px 6vw;
  }

  .key-facts-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .key-fact-item {
    min-height: auto;
  }

  .key-fact-item:nth-child(even) {
    transform: none;
  }

  .key-fact-item:nth-child(even):hover {
    transform: translateY(-8px);
  }
}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {
  .key-facts-section {
    padding: 80px 24px;
  }

  .key-facts-heading {
    margin-bottom: 50px;
  }

  .key-facts-heading h2 {
    font-size: 58px;
  }

  .key-fact-item {
    padding: 35px 25px;
  }

  .key-fact-number {
    font-size: 45px;
    margin-bottom: 15px;
  }

  .key-fact-content p {
    font-size: 15px;
    line-height: 1.75;
  }
}

/* ==========================================
   CORPORATE VAT & TAX
   PRICING SECTION
========================================== */

.tax-pricing-section {
  position: relative;

  width: 100%;

  padding: 120px 6%;

  background: #004225;

  overflow: hidden;

  isolation: isolate;
}


/* ==========================================
   BACKGROUND DECORATION
========================================== */

.tax-pricing-section::before {
  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  top: -450px;
  right: -300px;

  border-radius: 50%;

  border: 1px solid rgba(212, 175, 55, 0.12);

  z-index: -1;
}


.tax-pricing-section::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  bottom: -350px;
  left: -250px;

  border-radius: 50%;

  background: rgba(212, 175, 55, 0.035);

  filter: blur(20px);

  z-index: -1;
}


/* ==========================================
   DECORATIVE CIRCLES
========================================== */

.tax-bg-circle {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  z-index: -1;
}


.tax-bg-circle-one {
  width: 260px;
  height: 260px;

  top: 35%;

  left: -180px;

  border: 1px solid rgba(255, 255, 240, 0.05);
}


.tax-bg-circle-two {
  width: 160px;
  height: 160px;

  top: 42%;

  left: -110px;

  border: 1px solid rgba(212, 175, 55, 0.08);
}


/* ==========================================
   MAIN CONTAINER
========================================== */

.tax-pricing-container {
  max-width: 1280px;

  margin: 0 auto;
}


/* ==========================================
   HEADER
========================================== */

.tax-pricing-header {
  max-width: 760px;

  margin: 0 auto 70px;

  text-align: center;
}


.tax-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 22px;

  color: #D4AF37;

  font-family: "Inter", Arial, sans-serif;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 3px;
}


.tax-eyebrow::before,
.tax-eyebrow::after {
  content: "";

  width: 30px;

  height: 1px;

  background: #D4AF37;
}


.tax-pricing-header h2 {
  margin: 0 0 22px;

  color: #FFFFF0;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(45px, 5vw, 68px);

  font-weight: 500;

  line-height: 1.05;

  letter-spacing: -1px;
}


.tax-pricing-header h2 span {
  color: #D4AF37;

  font-style: normal;
}


.tax-pricing-header p {
  max-width: 650px;

  margin: 0 auto;

  color: rgba(255, 255, 240, 0.7);

  font-family: "Inter", Arial, sans-serif;

  font-size: 15px;

  line-height: 1.8;
}


/* ==========================================
   PRICING GRID
========================================== */

.tax-pricing-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

  align-items: stretch;
}


/* ==========================================
   PRICE CARD
========================================== */

.tax-price-card {
  position: relative;

  display: flex;

  flex-direction: column;

  padding: 40px 34px;

  background:
    linear-gradient(145deg,
      rgba(255, 255, 240, 0.075),
      rgba(255, 255, 240, 0.025));

  border: 1px solid rgba(255, 255, 240, 0.14);

  border-radius: 25px;

  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    background 0.45s ease;
}


.tax-price-card:hover {
  transform: translateY(-10px);

  border-color: rgba(212, 175, 55, 0.55);

  background:
    linear-gradient(145deg,
      rgba(255, 255, 240, 0.10),
      rgba(255, 255, 240, 0.035));

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.18),
    0 0 30px rgba(212, 175, 55, 0.07);
}


/* ==========================================
   FEATURED CARD
========================================== */

.tax-price-featured {
  border-color: rgba(212, 175, 55, 0.65);

  background:
    linear-gradient(145deg,
      rgba(212, 175, 55, 0.09),
      rgba(255, 255, 240, 0.035));

  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.15);
}


.tax-popular-badge {
  position: absolute;

  top: 0;

  right: 28px;

  padding: 8px 14px;

  background: #D4AF37;

  color: #004225;

  font-family: "Inter", Arial, sans-serif;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


/* ==========================================
   CARD NUMBER
========================================== */

.tax-card-number {
  margin-bottom: 20px;

  color: #D4AF37;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 18px;

  font-weight: 600;
}


/* ==========================================
   PLAN LABEL
========================================== */

.tax-plan-label {
  display: block;

  margin-bottom: 9px;

  color: rgba(255, 255, 240, 0.5);

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;
}


/* ==========================================
   PLAN TITLE
========================================== */

.tax-price-card h3 {
  margin: 0;

  color: #FFFFF0;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 32px;

  font-weight: 500;

  line-height: 1.1;
}


/* ==========================================
   PLAN DESCRIPTION
========================================== */

.tax-plan-description {
  min-height: 88px;

  margin: 25px 0 0;

  color: rgba(255, 255, 240, 0.63);

  font-family: "Inter", Arial, sans-serif;

  font-size: 13px;

  line-height: 1.75;
}


/* ==========================================
   PRICE
========================================== */

.tax-price {
  display: flex;

  align-items: baseline;

  flex-wrap: wrap;

  gap: 7px;

  margin-top: 25px;
}


.tax-price-currency {
  color: #D4AF37;

  font-family: "Inter", Arial, sans-serif;

  font-size: 11px;

  font-weight: 700;
}


.tax-price strong {
  color: #FFFFF0;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 48px;

  font-weight: 500;

  line-height: 1;
}


.tax-price-period {
  color: rgba(255, 255, 240, 0.45);

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;
}


/* ==========================================
   DIVIDER
========================================== */

.tax-card-divider {
  width: 100%;

  height: 1px;

  margin: 28px 0;

  background:
    linear-gradient(90deg,
      rgba(212, 175, 55, 0.45),
      rgba(255, 255, 240, 0.05));
}


/* ==========================================
   FEATURES
========================================== */

.tax-feature-list {
  display: flex;

  flex-direction: column;

  gap: 16px;

  margin: 0;

  padding: 0;

  list-style: none;
}


.tax-feature-list li {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  color: rgba(255, 255, 240, 0.75);

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;

  line-height: 1.5;
}


.tax-feature-list li span {
  flex-shrink: 0;

  color: #D4AF37;

  font-size: 14px;

  font-weight: 700;
}


/* ==========================================
   PLAN BUTTON
========================================== */

.tax-plan-button {
  display: flex;

  align-items: center;

  justify-content: space-between;

  width: 100%;

  margin-top: auto;

  padding-top: 30px;

  padding-bottom: 12px;

  border-bottom: 1px solid rgba(255, 255, 240, 0.2);

  color: #FFFFF0;

  text-decoration: none;

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;

  font-weight: 600;

  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}


.tax-plan-button>span:last-child {
  color: #D4AF37;

  font-size: 20px;

  transition:
    transform 0.3s ease;
}


.tax-plan-button:hover {
  color: #D4AF37;

  border-color: #D4AF37;
}


.tax-plan-button:hover>span:last-child {
  transform: translateX(6px);
}


/* ==========================================
   FEATURED BUTTON
========================================== */

.tax-plan-button-gold {
  color: #D4AF37;

  border-color: rgba(212, 175, 55, 0.4);
}


/* ==========================================
   BOTTOM CONSULTATION CTA
========================================== */

.tax-consultation-cta {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;

  margin-top: 70px;

  padding: 45px 50px;

  background: #FFFFF0;

  border-radius: 25px;

  overflow: hidden;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.15);
}


/* Gold Left Border */

.tax-cta-accent {
  position: absolute;

  top: 0;
  left: 0;

  width: 5px;
  height: 100%;

  background: #D4AF37;
}


/* ==========================================
   CTA CONTENT
========================================== */

.tax-cta-content {
  position: relative;

  z-index: 2;

  max-width: 700px;
}


.tax-cta-eyebrow {
  display: block;

  margin-bottom: 10px;

  color: #D4AF37;

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 2px;
}


.tax-cta-content h3 {
  margin: 0 0 12px;

  color: #004225;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 43px;

  font-weight: 500;

  line-height: 1.1;
}


.tax-cta-content p {
  max-width: 650px;

  margin: 0;

  color: rgba(0, 66, 37, 0.68);

  font-family: "Inter", Arial, sans-serif;

  font-size: 13px;

  line-height: 1.75;
}


/* ==========================================
   CTA ACTION
========================================== */

.tax-cta-action {
  position: relative;

  z-index: 2;

  flex-shrink: 0;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 10px;
}


/* ==========================================
   CONSULTATION BUTTON
========================================== */

.tax-consultation-button {
  display: inline-flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  min-height: 58px;

  padding: 0 24px;

  background: #004225;

  color: #FFFFF0;

  border: 1px solid #004225;

  border-radius: 999px;

  text-decoration: none;

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;

  font-weight: 700;

  white-space: nowrap;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}


.tax-consultation-button:hover {
  transform: translateY(-4px);

  background: #D4AF37;

  color: #004225;

  border-color: #D4AF37;

  box-shadow:
    0 15px 35px rgba(212, 175, 55, 0.25);
}


.tax-cta-arrow {
  font-size: 19px;

  transition:
    transform 0.3s ease;
}


.tax-consultation-button:hover .tax-cta-arrow {
  transform: translate(4px, -4px);
}


.tax-cta-action small {
  color: rgba(0, 66, 37, 0.55);

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;

  letter-spacing: 0.4px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1050px) {

  .tax-pricing-section {
    padding: 90px 5%;
  }


  .tax-pricing-grid {
    grid-template-columns: 1fr;

    max-width: 650px;

    margin: 0 auto;
  }


  .tax-plan-description {
    min-height: auto;
  }


  .tax-consultation-cta {
    flex-direction: column;

    align-items: flex-start;
  }


  .tax-cta-action {
    align-items: flex-start;
  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

  .tax-pricing-section {
    padding: 75px 20px;
  }


  .tax-pricing-header {
    margin-bottom: 45px;
  }


  .tax-pricing-header h2 {
    font-size: 43px;

    letter-spacing: -0.5px;
  }


  .tax-pricing-header p {
    font-size: 14px;
  }


  .tax-price-card {
    padding: 34px 25px;
  }


  .tax-price-card h3 {
    font-size: 29px;
  }


  .tax-price strong {
    font-size: 44px;
  }


  .tax-consultation-cta {
    margin-top: 45px;

    padding: 38px 28px;

    gap: 30px;
  }


  .tax-cta-content h3 {
    font-size: 36px;
  }


  .tax-cta-content p {
    font-size: 13px;
  }


  .tax-cta-action {
    width: 100%;

    align-items: stretch;
  }


  .tax-consultation-button {
    width: 100%;

    padding: 0 18px;

    font-size: 11px;
  }

}