/* =========================================================
   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;
  animation: zoomHero 18s ease-in-out infinite alternate;
}


/* =========================================================
   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;
  }

}

/* =========================================
   ELIGIBILITY PATHWAYS
   PREMIUM BEXFORD DESIGN
========================================= */

.eligibility-section {

  --primary-bg: #004225;
  --ivory: #FFFFF0;
  --gold: #D4AF37;

  position: relative;

  overflow: hidden;

  padding: 120px 24px;

  background:

    radial-gradient(circle at 15% 20%,
      rgba(212, 175, 55, 0.08),
      transparent 30%),

    radial-gradient(circle at 85% 80%,
      rgba(255, 255, 240, 0.035),
      transparent 30%),

    var(--primary-bg);

  color: var(--ivory);

  isolation: isolate;
}


/* =========================================
   BACKGROUND TOP LINE
========================================= */

.eligibility-section::before {

  content: "";

  position: absolute;

  top: 25px;

  left: 4%;

  right: 4%;

  height: 1px;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(212, 175, 55, 0.35),
      transparent);

  opacity: 0.7;
}


/* =========================================
   BACKGROUND GLOW
========================================= */

.eligibility-glow {

  position: absolute;

  width: 450px;

  height: 450px;

  border-radius: 50%;

  background:

    radial-gradient(circle,
      rgba(212, 175, 55, 0.10),
      transparent 68%);

  filter: blur(50px);

  pointer-events: none;

  z-index: -1;

  animation:
    ambientGlow 8s ease-in-out infinite alternate;
}


.glow-left {

  top: -280px;

  left: -250px;
}


.glow-right {

  right: -250px;

  bottom: -300px;

  animation-delay: 3s;
}


@keyframes ambientGlow {

  0% {

    transform: scale(0.9);

    opacity: 0.35;
  }

  100% {

    transform: scale(1.15);

    opacity: 0.8;
  }

}


/* =========================================
   CONTAINER
========================================= */

.eligibility-container {

  position: relative;

  z-index: 2;

  max-width: 1500px;

  margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.eligibility-header {

  text-align: center;

  margin-bottom: 85px;
}


.eligibility-eyebrow {

  display: inline-block;

  margin-bottom: 20px;

  color: var(--gold);

  font-family: "Inter", sans-serif;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 4px;

  text-transform: uppercase;
}


.eligibility-header h2 {

  margin: 0;

  color: var(--ivory);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size:
    clamp(42px, 5vw, 68px);

  font-weight: 500;

  line-height: 1.1;

  letter-spacing: -1px;
}


/* =========================================
   CARD GRID
========================================= */

.eligibility-grid {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 20px;
}


/* =========================================
   CARD
========================================= */

.eligibility-card {

  position: relative;

  min-height: 360px;

  overflow: hidden;

  background: var(--ivory);

  color: var(--primary-bg);

  border:

    1px solid rgba(212, 175, 55, 0.10);

  box-shadow:

    0 15px 40px rgba(0, 0, 0, 0.10);

  transition:

    transform 0.6s cubic-bezier(.22, .61, .36, 1),

    box-shadow 0.6s ease,

    border-color 0.5s ease;
  border-radius: 25px;
}


/* =========================================
   CARD HOVER
========================================= */

.eligibility-card:hover {

  transform:
    translateY(-14px);

  border-color:

    rgba(212, 175, 55, 0.65);

  box-shadow:

    0 25px 55px rgba(0, 0, 0, 0.18),

    0 0 35px rgba(212, 175, 55, 0.12);
}


/* =========================================
   CARD INNER
========================================= */

.card-inner {

  position: relative;

  z-index: 2;

  height: 100%;

  min-height: 560px;


  padding: 48px 40px;

  display: flex;

  flex-direction: column;
  border-radius: 25px;
}


/* =========================================
   CARD GOLD TOP LINE
========================================= */

.card-inner::before {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 0;

  height: 3px;

  background: var(--gold);

  box-shadow:

    0 0 15px rgba(212, 175, 55, 0.65);

  transition:

    width 0.6s cubic-bezier(.22, .61, .36, 1);
}


.eligibility-card:hover .card-inner::before {

  width: 100%;
}


/* =========================================
   CARD HOVER GLOW
========================================= */

.card-hover-glow {

  position: absolute;

  width: 250px;

  height: 250px;

  top: -130px;

  right: -130px;

  border-radius: 50%;

  background:

    radial-gradient(circle,
      rgba(212, 175, 55, 0.18),
      transparent 68%);

  filter: blur(15px);

  opacity: 0;

  transition:

    opacity 0.6s ease,

    transform 0.7s ease;
}


.eligibility-card:hover .card-hover-glow {

  opacity: 1;

  transform: scale(1.3);
}


/* =========================================
   NUMBER
========================================= */

.card-number {

  margin-bottom: 30px;

  color: var(--gold);

  font-family:
    "Inter", sans-serif;

  font-size: 22px;

  font-weight: 500;

  line-height: 1;

  transition:

    transform 0.4s ease,

    letter-spacing 0.4s ease;
}


.eligibility-card:hover .card-number {

  transform:
    translateX(5px);

  letter-spacing: 2px;
}


/* =========================================
   CARD TITLE
========================================= */

.eligibility-card h3 {

  margin: 0 0 22px;

  color: var(--primary-bg);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 29px;

  font-weight: 500;

  line-height: 1.18;
}


/* =========================================
   NORMAL CARD PARAGRAPH
========================================= */

.eligibility-card p {

  margin: 0;

  color:
    rgba(0, 66, 37, 0.58);

  font-family: "Inter", sans-serif;

  font-size: 15px;

  line-height: 1.8;
}


/* =========================================
   PROPERTY INVESTOR BULLETS
========================================= */

.property-investor-list {

  display: flex;

  flex-direction: column;

  gap: 20px;

  margin: 0;

  padding: 0;

  list-style: none;
}


.property-investor-list li {

  display: flex;

  align-items: flex-start;

  gap: 12px;

  color:

    rgba(0, 66, 37, 0.65);

  font-family: "Inter", sans-serif;

  font-size: 13px;

  line-height: 1.65;

  transition:

    color 0.3s ease,

    transform 0.3s ease;
}


.property-investor-list li:hover {

  color: var(--primary-bg);

  transform:
    translateX(4px);
}


/* Gold bullet */

.bullet-icon {

  flex-shrink: 0;

  margin-top: 7px;

  color: var(--gold);

  font-size: 8px;

  transition:

    transform 0.3s ease,

    text-shadow 0.3s ease;
}


.property-investor-list li:hover .bullet-icon {

  transform:
    scale(1.5);

  text-shadow:

    0 0 8px rgba(212, 175, 55, 0.6);
}


/* =========================================
   ICON
========================================= */

.card-icon {

  position: absolute;

  right: 35px;

  bottom: 35px;

  width: 85px;

  height: 85px;

  display: flex;

  align-items: center;

  justify-content: center;

  color:

    rgba(0, 66, 37, 0.13);

  transition:

    transform 0.6s cubic-bezier(.22, .61, .36, 1),

    color 0.5s ease,

    filter 0.5s ease;
}


.card-icon svg {

  width: 75px;

  height: 75px;
}


.eligibility-card:hover .card-icon {

  color:

    rgba(212, 175, 55, 0.42);

  transform:

    translateY(-10px) rotate(-5deg);

  filter:

    drop-shadow(0 0 10px rgba(212, 175, 55, 0.25));
}


/* =========================================
   PROPERTY ICON
========================================= */

.property-icon {

  animation:

    iconFloat 5s ease-in-out infinite;
}


@keyframes iconFloat {

  0%,
  100% {

    transform:
      translateY(0);
  }

  50% {

    transform:
      translateY(-8px);
  }
}


/* =========================================
   CARD SHIMMER
========================================= */

.eligibility-card::after {

  content: "";

  position: absolute;

  top: 0;

  left: -120%;

  width: 70%;

  height: 100%;

  background:

    linear-gradient(100deg,
      transparent,
      rgba(255, 255, 240, 0.35),
      transparent);

  transform:
    skewX(-15deg);

  pointer-events: none;

  transition:

    left 0.8s ease;
}


.eligibility-card:hover::after {

  left: 140%;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1200px) {

  .eligibility-grid {

    grid-template-columns:
      repeat(2, 1fr);

    max-width: 850px;

    margin: 0 auto;
  }

  .eligibility-card {

    min-height: 520px;
  }

  .card-inner {

    min-height: 520px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

  .eligibility-section {

    padding:
      80px 18px;
  }


  .eligibility-header {

    margin-bottom: 55px;
  }


  .eligibility-eyebrow {

    font-size: 10px;

    letter-spacing: 3px;
  }


  .eligibility-header h2 {

    font-size: 43px;

    line-height: 1.05;
  }


  .eligibility-grid {

    grid-template-columns: 1fr;

    gap: 20px;
  }


  .eligibility-card {

    min-height: 470px;
  }


  .card-inner {

    min-height: 470px;

    padding:
      38px 28px;
  }


  .card-number {

    font-size: 28px;

    margin-bottom: 25px;
  }


  .eligibility-card h3 {

    font-size: 28px;

    margin-bottom: 20px;
  }


  .eligibility-card p {

    font-size: 14px;

    line-height: 1.75;
  }


  .property-investor-list {

    gap: 17px;
  }


  .property-investor-list li {

    font-size: 13px;

    line-height: 1.6;
  }


  .card-icon {

    right: 25px;

    bottom: 25px;

    width: 70px;

    height: 70px;
  }


  .card-icon svg {

    width: 62px;

    height: 62px;
  }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

  .eligibility-header h2 {

    font-size: 38px;
  }


  .card-inner {

    padding:
      34px 23px;
  }


  .eligibility-card h3 {

    font-size: 26px;
  }


  .property-investor-list li {

    font-size: 12px;
  }

}

/* =========================================
   GOLDEN BENEFITS SECTION
========================================= */

.golden-benefits {

  --primary: #004225;
  --ivory: #FFFFF0;
  --gold: #D4AF37;

  position: relative;

  overflow: hidden;

  padding: 130px 30px;

  background:

    radial-gradient(circle at 20% 50%,
      rgba(212, 175, 55, 0.06),
      transparent 30%),

    var(--primary);

  color: var(--ivory);
}


/* =========================================
   BACKGROUND GLOW
========================================= */

.golden-bg-glow {

  position: absolute;

  width: 500px;

  height: 500px;

  left: -250px;

  top: 50%;

  transform: translateY(-50%);

  border-radius: 50%;

  background:

    radial-gradient(circle,
      rgba(212, 175, 55, 0.08),
      transparent 65%);

  filter: blur(40px);

  pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.golden-benefits-container {

  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  align-items: center;

  gap: 100px;
}


/* =========================================
   LEFT VISUAL
========================================= */

.golden-visual {

  position: relative;

  width: 500px;

  height: 500px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: auto;
}


/* =========================================
   ORBIT CIRCLES
========================================= */

.orbit {

  position: absolute;

  border-radius: 50%;

  border:

    1px solid rgba(212, 175, 55, 0.28);

  pointer-events: none;
}


.orbit-outer {

  width: 430px;

  height: 430px;

  animation:

    rotateOrbit 22s linear infinite;
}


.orbit-inner {

  width: 330px;

  height: 330px;

  border-color:

    rgba(212, 175, 55, 0.18);

  border-style: dashed;

  animation:

    rotateOrbitReverse 15s linear infinite;
}


@keyframes rotateOrbit {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}


@keyframes rotateOrbitReverse {

  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }

}


/* =========================================
   CENTER IMAGE
========================================= */

.golden-image-wrapper {

  position: relative;

  width: 250px;

  height: 250px;

  z-index: 5;

  border-radius: 50%;

  overflow: hidden;

  background: var(--primary);

  border:

    2px solid rgba(212, 175, 55, 0.65);

  box-shadow:

    0 0 0 12px rgba(212, 175, 55, 0.035),

    0 0 0 25px rgba(212, 175, 55, 0.018),

    0 20px 60px rgba(0, 0, 0, 0.25);

  animation:

    centerPulse 4s ease-in-out infinite;
}


/* =========================================
   IMAGE
========================================= */

.golden-image-wrapper img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  opacity: 1;

  transform: scale(1);

  transition:

    opacity 0.8s ease,

    transform 1.2s cubic-bezier(.22, .61, .36, 1),

    filter 0.8s ease;
}


/* Animation state */

.golden-image-wrapper img.image-changing {

  opacity: 0;

  transform: scale(1.15);

  filter:

    blur(5px);
}


/* =========================================
   IMAGE RING
========================================= */

.golden-image-ring {

  position: absolute;

  inset: 8px;

  border-radius: 50%;

  border:

    1px solid rgba(255, 255, 240, 0.25);

  z-index: 2;

  pointer-events: none;
}


/* =========================================
   CENTER PULSE
========================================= */

@keyframes centerPulse {

  0%,
  100% {

    transform: scale(1);

    box-shadow:

      0 0 0 12px rgba(212, 175, 55, 0.035),

      0 0 0 25px rgba(212, 175, 55, 0.018),

      0 20px 60px rgba(0, 0, 0, 0.25);
  }

  50% {

    transform: scale(1.04);

    box-shadow:

      0 0 0 18px rgba(212, 175, 55, 0.045),

      0 0 0 35px rgba(212, 175, 55, 0.018),

      0 25px 70px rgba(0, 0, 0, 0.3);
  }

}


/* =========================================
   ORBIT BALL
========================================= */

.orbit-ball {

  position: absolute;

  width: 24px;

  height: 24px;

  top: 50%;

  left: 50%;

  z-index: 10;

  margin-left: -12px;

  margin-top: -12px;

  border-radius: 50%;

  background: var(--gold);

  box-shadow:

    0 0 10px rgba(212, 175, 55, 0.9),

    0 0 30px rgba(212, 175, 55, 0.55),

    0 0 60px rgba(212, 175, 55, 0.25);

  animation:

    ballOrbit 8s linear infinite;
}


@keyframes ballOrbit {

  0% {

    transform:
      rotate(0deg) translateX(215px) rotate(0deg);
  }

  100% {

    transform:
      rotate(360deg) translateX(215px) rotate(-360deg);
  }

}


/* =========================================
   CONTENT
========================================= */

.golden-content {

  max-width: 600px;
}


/* =========================================
   EYEBROW
========================================= */

.golden-eyebrow {

  display: block;

  margin-bottom: 24px;

  color: var(--gold);

  font-family: "Inter", sans-serif;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 4px;
}


/* =========================================
   HEADING
========================================= */

.golden-content h2 {

  margin: 0 0 50px;

  color: var(--ivory);

  font-family:

    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 42px;

  font-weight: 500;
}


/* =========================================
   TIMELINE
========================================= */

.benefits-timeline {

  position: relative;

  padding-left: 55px;
}


/* Vertical line */

.benefits-timeline::before {

  content: "";

  position: absolute;

  top: 15px;

  bottom: 15px;

  left: 14px;

  width: 1px;

  background:

    linear-gradient(to bottom,
      rgba(212, 175, 55, 0.45),
      rgba(212, 175, 55, 0.08));
}


/* =========================================
   BENEFIT ITEM
========================================= */

.benefit-item {

  position: relative;

  display: flex;

  gap: 25px;

  margin-bottom: 42px;

  transition:

    transform 0.4s ease;
}


.benefit-item:last-child {

  margin-bottom: 0;
}


.benefit-item:hover {

  transform:
    translateX(8px);
}


/* =========================================
   MARKER
========================================= */

.benefit-marker {

  position: absolute;

  left: -55px;

  top: 0;

  width: 30px;

  height: 30px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--gold);

  font-size: 20px;

  background: var(--primary);

  border-radius: 50%;

  transition:

    transform 0.4s ease,

    box-shadow 0.4s ease;
}


.benefit-item:hover .benefit-marker {

  transform:
    scale(1.25);

  box-shadow:

    0 0 20px rgba(212, 175, 55, 0.35);
}


/* =========================================
   BENEFIT TEXT
========================================= */

.benefit-text h3 {

  margin: 0 0 10px;

  color: var(--ivory);

  font-family:

    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 24px;

  font-weight: 600;

  line-height: 1.2;

  transition:

    color 0.3s ease;
}


.benefit-item:hover .benefit-text h3 {

  color: var(--gold);
}


.benefit-text p {

  margin: 0;

  color:

    rgba(255, 255, 240, 0.62);

  font-family: "Inter", sans-serif;

  font-size: 15px;

  line-height: 1.7;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

  .golden-benefits-container {

    grid-template-columns: 1fr;

    gap: 80px;
  }

  .golden-visual {

    width: 450px;

    height: 450px;

    order: 1;
  }

  .golden-content {

    max-width: 700px;

    margin: auto;

    width: 100%;

    order: 2;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .golden-benefits {

    padding:

      80px 20px;
  }


  .golden-visual {

    width: 320px;

    height: 320px;
  }


  .orbit-outer {

    width: 280px;

    height: 280px;
  }


  .orbit-inner {

    width: 220px;

    height: 220px;
  }


  .golden-image-wrapper {

    width: 175px;

    height: 175px;
  }


  .orbit-ball {

    width: 18px;

    height: 18px;

    margin-left: -9px;

    margin-top: -9px;
  }


  @keyframes ballOrbit {

    0% {

      transform:
        rotate(0deg) translateX(140px) rotate(0deg);
    }

    100% {

      transform:
        rotate(360deg) translateX(140px) rotate(-360deg);
    }

  }


  .golden-content h2 {

    font-size: 38px;

    margin-bottom: 40px;
  }


  .benefits-timeline {

    padding-left: 45px;
  }


  .benefits-timeline::before {

    left: 12px;
  }


  .benefit-marker {

    left: -45px;

    width: 26px;

    height: 26px;

    font-size: 17px;
  }


  .benefit-item {

    margin-bottom: 35px;
  }


  .benefit-text h3 {

    font-size: 21px;
  }


  .benefit-text p {

    font-size: 14px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

  .golden-visual {

    transform: scale(0.9);

    margin:
      -15px 0;
  }

  .golden-content h2 {

    font-size: 34px;
  }

}

/* =========================================
   REQUIRED DOCUMENTATION
========================================= */

.documents-section {

  --primary-bg: #004225;
  --ivory: #FFFFF0;
  --gold: #D4AF37;

  position: relative;

  overflow: hidden;

  padding: 120px 24px;

  background:

    radial-gradient(circle at 20% 10%,
      rgba(212, 175, 55, 0.08),
      transparent 30%),

    radial-gradient(circle at 90% 90%,
      rgba(255, 255, 240, 0.04),
      transparent 30%),

    var(--primary-bg);

  color: var(--ivory);
}


/* =========================================
   BACKGROUND GLOW
========================================= */

.documents-glow {

  position: absolute;

  width: 400px;

  height: 400px;

  border-radius: 50%;

  background:

    radial-gradient(circle,
      rgba(212, 175, 55, 0.08),
      transparent 68%);

  filter: blur(50px);

  pointer-events: none;

  animation:

    documentGlow 8s ease-in-out infinite alternate;
}


.documents-glow-one {

  top: -250px;

  left: -200px;
}


.documents-glow-two {

  right: -250px;

  bottom: -250px;

  animation-delay: 3s;
}


@keyframes documentGlow {

  0% {

    transform: scale(0.9);

    opacity: 0.4;
  }

  100% {

    transform: scale(1.2);

    opacity: 0.8;
  }

}


/* =========================================
   CONTAINER
========================================= */

.documents-container {

  position: relative;

  z-index: 2;

  max-width: 1100px;

  margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.documents-header {

  text-align: center;

  margin-bottom: 80px;
}


.documents-eyebrow {

  display: block;

  margin-bottom: 20px;

  color: var(--gold);

  font-family: "Inter", sans-serif;

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 4px;

  text-transform: uppercase;
}


.documents-header h2 {

  margin: 0;

  color: var(--ivory);

  font-family:

    "Cormorant Garamond",
    Georgia,
    serif;

  font-size:

    clamp(44px, 5vw, 68px);

  font-weight: 500;

  line-height: 1.1;

  letter-spacing: -1px;
}


/* =========================================
   2 x 2 GRID
========================================= */

.documents-grid {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 55px 55px;

  max-width: 1000px;

  margin: 0 auto;
}


/* =========================================
   DOCUMENT CARD
========================================= */

.document-card {

  position: relative;

  min-height: 340px;

  background:

    linear-gradient(145deg,
      rgba(255, 255, 240, 1),
      rgba(255, 255, 240, 0.96));

  color: var(--primary-bg);

  box-shadow:

    0 20px 45px rgba(0, 0, 0, 0.15);

  transition:

    transform 0.6s cubic-bezier(.22, .61, .36, 1),

    box-shadow 0.6s ease;
  border-radius: 25px;
}


/* =========================================
   CARD HOVER
========================================= */

.document-card:hover {

  transform:

    translateY(-12px) rotate(-0.5deg);

  box-shadow:

    0 30px 60px rgba(0, 0, 0, 0.22),

    0 0 35px rgba(212, 175, 55, 0.10);
}


/* =========================================
   PAPER TEXTURE
========================================= */

.document-card::before {

  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  background:

    radial-gradient(circle at 20% 20%,
      rgba(212, 175, 55, 0.06),
      transparent 35%);
}


/* =========================================
   GOLD TOP BORDER
========================================= */

.document-card::after {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 0;

  height: 3px;

  background: var(--gold);

  box-shadow:

    0 0 15px rgba(212, 175, 55, 0.6);

  transition:

    width 0.6s cubic-bezier(.22, .61, .36, 1);
}


.document-card:hover::after {

  width: 100%;
}


/* =========================================
   CARD INNER
========================================= */

.document-card-inner {

  position: relative;

  z-index: 2;

  min-height: 340px;

  padding: 45px 42px 35px;

  display: flex;

  flex-direction: column;
  border-radius: 25px;
}


/* =========================================
   PAPERCLIP
========================================= */

.paperclip {

  position: absolute;

  top: -18px;

  left: 50%;

  z-index: 5;

  width: 32px;

  height: 48px;

  transform:
    translateX(-50%) rotate(5deg);

  color: var(--gold);

  font-size: 58px;

  line-height: 40px;

  font-family: Arial, sans-serif;

  transition:

    transform 0.5s ease,

    filter 0.5s ease;
}


.document-card:hover .paperclip {

  transform:

    translateX(-50%) translateY(-5px) rotate(-8deg);

  filter:

    drop-shadow(0 0 7px rgba(212, 175, 55, 0.6));
}


/* =========================================
   DEPARTMENT
========================================= */

.document-department {

  color:

    rgba(212, 175, 55, 0.85);

  font-family: "Inter", sans-serif;

  font-size: 12px;

  font-weight: 500;

  letter-spacing: 1px;
}


/* =========================================
   DIVIDER
========================================= */

.document-line {

  width: 100%;

  height: 1px;

  margin: 15px 0 28px;

  background:

    linear-gradient(90deg,
      rgba(212, 175, 55, 0.25),
      rgba(212, 175, 55, 0.08),
      transparent);
}


/* =========================================
   DOCUMENT TEXT
========================================= */

.document-card h3 {

  max-width: 450px;

  margin: 0;

  color: var(--primary-bg);

  font-family:

    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 25px;

  font-weight: 500;

  line-height: 1.45;

  transition:

    color 0.3s ease;
}


.document-card:hover h3 {

  color:

    #00351f;
}


/* =========================================
   BOTTOM
========================================= */

.document-bottom {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-top: auto;

  padding-top: 25px;

  border-top:

    1px solid rgba(0, 66, 37, 0.08);

  color:

    rgba(0, 66, 37, 0.32);

  font-family: "Inter", sans-serif;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 1px;
}


/* =========================================
   BOTTOM DOT
========================================= */

.document-dot {

  color:

    rgba(212, 175, 55, 0.35);

  font-size: 11px;

  transition:

    color 0.3s ease,

    transform 0.3s ease;
}


.document-card:hover .document-dot {

  color: var(--gold);

  transform: scale(1.3);

}


/* =========================================
   MOBILE / TABLET
========================================= */

@media (max-width: 850px) {

  .documents-section {

    padding: 90px 20px;
  }


  .documents-header {

    margin-bottom: 60px;
  }


  .documents-grid {

    gap: 40px 25px;
  }


  .document-card {

    min-height: 320px;
  }


  .document-card-inner {

    min-height: 320px;

    padding:
      40px 30px 30px;
  }


  .document-card h3 {

    font-size: 22px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

  .documents-section {

    padding:
      75px 18px;
  }


  .documents-header {

    margin-bottom: 50px;
  }


  .documents-eyebrow {

    font-size: 10px;

    letter-spacing: 3px;
  }


  .documents-header h2 {

    font-size: 43px;

    line-height: 1.05;
  }


  .documents-grid {

    grid-template-columns: 1fr;

    gap: 45px;
  }


  .document-card {

    min-height: 330px;
  }


  .document-card-inner {

    min-height: 330px;

    padding:
      42px 28px 30px;
  }


  .document-card h3 {

    font-size: 24px;

    line-height: 1.4;
  }


  .paperclip {

    top: -16px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

  .documents-header h2 {

    font-size: 38px;
  }


  .document-card h3 {

    font-size: 21px;
  }


  .document-card-inner {

    padding:
      40px 23px 28px;
  }

}

/* ==========================================
   IT SERVICES
   ELIGIBILITY CTA SECTION
========================================== */

.it-eligibility-section {
  position: relative;

  width: 100%;

  padding: 120px 6%;

  background: #004225;

  overflow: hidden;

  isolation: isolate;
  justify-content: center;
}


/* ==========================================
   BACKGROUND DECORATION
========================================== */

.it-eligibility-section::before {
  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  top: -450px;
  right: -300px;

  border-radius: 50%;

  border: 1px solid rgba(212, 175, 55, 0.11);

  z-index: -1;
}


.it-eligibility-section::after {
  content: "";

  position: absolute;

  width: 550px;
  height: 550px;

  bottom: -400px;
  left: -300px;

  border-radius: 50%;

  background: rgba(212, 175, 55, 0.035);

  filter: blur(25px);

  z-index: -1;
}


/* ==========================================
   ANIMATED ORBITS
========================================== */

.it-bg-orbit {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  z-index: -1;
}


.it-orbit-one {
  width: 320px;
  height: 320px;

  top: 25%;
  left: -240px;

  border: 1px solid rgba(255, 255, 240, 0.05);

  animation:
    itOrbitRotate 18s linear infinite;
}


.it-orbit-two {
  width: 210px;
  height: 210px;

  top: 35%;
  left: -175px;

  border: 1px solid rgba(212, 175, 55, 0.08);

  animation:
    itOrbitReverse 13s linear infinite;
}


@keyframes itOrbitRotate {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}


@keyframes itOrbitReverse {

  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }

}


/* ==========================================
   MAIN CONTAINER
========================================== */

.it-eligibility-container {
  max-width: 1280px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1fr 0.9fr;

  gap: 90px;

  align-items: center;
  justify-content: center;
}


/* ==========================================
   LEFT CONTENT
========================================== */

.it-eligibility-content {
  max-width: 650px;
  align-items: center;
}


.it-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 25px;

  color: #D4AF37;

  font-family: "Inter", Arial, sans-serif;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 3px;
}


.it-eyebrow::before {
  content: "";

  width: 35px;

  height: 1px;

  background: #D4AF37;
}


/* ==========================================
   HEADING
========================================== */

.it-eligibility-content h2 {
  margin: 0 0 25px;

  color: #FFFFF0;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(50px, 5.5vw, 78px);

  font-weight: 500;

  line-height: 1.02;

  letter-spacing: -1.5px;
}


.it-eligibility-content h2 span {
  display: block;

  color: #D4AF37;

  font-style: normal;
}


/* ==========================================
   DESCRIPTION
========================================== */

.it-eligibility-content>p {
  max-width: 590px;

  margin: 0 0 35px;

  color: rgba(255, 255, 240, 0.7);

  font-family: "Inter", Arial, sans-serif;

  font-size: 15px;

  line-height: 1.85;
}


/* ==========================================
   PRIMARY CTA
========================================== */

.it-primary-button {
  display: inline-flex;

  align-items: center;

  justify-content: space-between;

  gap: 35px;

  min-height: 58px;

  padding: 0 25px;

  background: #D4AF37;

  color: #004225;

  border: 1px solid #D4AF37;

  border-radius: 999px;

  text-decoration: none;

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;

  font-weight: 700;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}


.it-primary-button:hover {
  transform: translateY(-5px);

  background: #FFFFF0;

  color: #004225;

  border-color: #FFFFF0;

  box-shadow:
    0 18px 40px rgba(212, 175, 55, 0.2);
}


.it-button-arrow {
  font-size: 20px;

  transition:
    transform 0.3s ease;
}


.it-primary-button:hover .it-button-arrow {
  transform: translateX(6px);
}


/* ==========================================
   SECONDARY CTA
========================================== */

.it-secondary-button {
  display: inline-flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  min-height: 58px;

  margin-left: 12px;

  padding: 0 22px;

  background: transparent;

  color: #FFFFF0;

  border: 1px solid rgba(255, 255, 240, 0.25);

  border-radius: 999px;

  text-decoration: none;

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;

  font-weight: 600;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}


.it-secondary-button:hover {
  transform: translateY(-5px);

  color: #D4AF37;

  border-color: #D4AF37;

  box-shadow:
    0 15px 35px rgba(212, 175, 55, 0.08);
}


.it-secondary-button:hover .it-button-arrow {
  transform: translate(4px, -4px);
}


/* ==========================================
   TRUST NOTE
========================================== */

.it-trust-note {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-top: 22px;

  color: rgba(255, 255, 240, 0.45);

  font-family: "Inter", Arial, sans-serif;

  font-size: 11px;
}


.it-trust-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 18px;
  height: 18px;

  border: 1px solid rgba(212, 175, 55, 0.4);

  border-radius: 50%;

  color: #D4AF37;

  font-size: 9px;
}


/* ==========================================
   ELIGIBILITY CARD
========================================== */

.it-eligibility-card {
  position: relative;

  padding: 42px 40px;

  background:
    linear-gradient(145deg,
      rgba(255, 255, 240, 0.09),
      rgba(255, 255, 240, 0.025));

  border: 1px solid rgba(212, 175, 55, 0.38);

  border-radius: 3px;

  backdrop-filter: blur(10px);

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.16);

  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}


.it-eligibility-card:hover {
  transform: translateY(-8px);

  border-color: rgba(212, 175, 55, 0.7);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.2),
    0 0 40px rgba(212, 175, 55, 0.07);
}


/* ==========================================
   GOLD ACCENT
========================================== */

.it-card-accent {
  position: absolute;

  top: 0;
  left: 35px;

  width: 60px;
  height: 3px;

  background: #D4AF37;
}


/* ==========================================
   FORM HEADER
========================================== */

.it-form-header {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 25px;
}


.it-form-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 50px;
  height: 50px;

  border: 1px solid rgba(212, 175, 55, 0.5);

  border-radius: 50%;

  color: #D4AF37;
}


.it-form-icon svg {
  width: 23px;
  height: 23px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.4;

  stroke-linecap: round;

  stroke-linejoin: round;
}


.it-form-label {
  color: #D4AF37;

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;
}


/* ==========================================
   FORM HEADING
========================================== */

.it-eligibility-card h3 {
  margin: 0 0 17px;

  color: #FFFFF0;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 40px;

  font-weight: 500;

  line-height: 1.08;
}


/* ==========================================
   FORM DESCRIPTION
========================================== */

.it-form-description {
  margin: 0 0 28px;

  color: rgba(255, 255, 240, 0.62);

  font-family: "Inter", Arial, sans-serif;

  font-size: 13px;

  line-height: 1.8;
}


/* ==========================================
   FORM
========================================== */

.it-assessment-form {
  display: flex;

  flex-direction: column;

  gap: 17px;
}


/* ==========================================
   FORM GROUP
========================================== */

.it-form-group {
  display: flex;

  flex-direction: column;

  gap: 8px;
}


.it-form-group label {
  color: rgba(255, 255, 240, 0.6);

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.4px;
}


/* ==========================================
   INPUTS
========================================== */

.it-form-group input,
.it-form-group select {
  width: 100%;

  height: 48px;

  padding: 0 14px;

  background: rgba(255, 255, 240, 0.045);

  color: #FFFFF0;

  border: 1px solid rgba(255, 255, 240, 0.16);

  border-radius: 2px;

  outline: none;

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;

  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}


.it-form-group input::placeholder {
  color: rgba(255, 255, 240, 0.3);
}


.it-form-group select {
  cursor: pointer;
}


.it-form-group select option {
  background: #004225;

  color: #FFFFF0;
}


.it-form-group input:focus,
.it-form-group select:focus {
  background: rgba(255, 255, 240, 0.07);

  border-color: #D4AF37;

  box-shadow:
    0 0 0 3px rgba(212, 175, 55, 0.08);
}


/* ==========================================
   ASSESSMENT BUTTON
========================================== */

.it-assessment-button {
  display: flex;

  align-items: center;

  justify-content: space-between;

  width: 100%;

  height: 56px;

  margin-top: 5px;

  padding: 0 20px;

  background: #D4AF37;

  color: #004225;

  border: 1px solid #D4AF37;

  border-radius: 2px;

  cursor: pointer;

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;

  font-weight: 700;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}


.it-assessment-button:hover {
  transform: translateY(-3px);

  background: #FFFFF0;

  border-color: #FFFFF0;

  box-shadow:
    0 15px 35px rgba(212, 175, 55, 0.2);
}


.it-submit-arrow {
  font-size: 19px;

  transition:
    transform 0.3s ease;
}


.it-assessment-button:hover .it-submit-arrow {
  transform: translate(4px, -4px);
}


/* ==========================================
   DISCLAIMER
========================================== */

.it-form-disclaimer {
  display: block;

  margin-top: 15px;

  color: rgba(255, 255, 240, 0.35);

  font-family: "Inter", Arial, sans-serif;

  font-size: 9px;

  line-height: 1.6;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 950px) {

  .it-eligibility-section {
    padding: 90px 5%;
  }


  .it-eligibility-container {
    grid-template-columns: 1fr;

    gap: 60px;
  }


  .it-eligibility-content {
    max-width: 750px;
  }


  .it-eligibility-card {
    max-width: 700px;

    width: 100%;
  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

  .it-eligibility-section {
    padding: 75px 20px;
  }


  .it-eligibility-content h2 {
    font-size: 46px;

    letter-spacing: -0.8px;
  }


  .it-eligibility-content>p {
    font-size: 14px;

    line-height: 1.75;
  }


  .it-primary-button,
  .it-secondary-button {
    width: 100%;

    margin-left: 0;

    margin-top: 10px;
  }


  .it-trust-note {
    align-items: flex-start;

    line-height: 1.5;
  }


  .it-eligibility-card {
    padding: 35px 25px;
  }


  .it-eligibility-card h3 {
    font-size: 35px;
  }

}