/* =========================================================
   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;
  }

}

/* =========================================================
   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;
  }

}

/* =========================================
   WHY IT MATTERS SECTION
   Premium Bexford Design
========================================= */

.why-matters-section {

  --primary: #004225;
  --ivory: #FFFFF0;
  --gold: #D4AF37;

  position: relative;
  overflow: hidden;

  padding: 130px 24px;

  background-color: var(--primary);

  color: var(--ivory);

  isolation: isolate;
}


/* =========================================
   BACKGROUND GRID
========================================= */

.why-matters-grid {

  position: absolute;

  inset: 0;

  z-index: -2;

  opacity: 0.035;

  background-image:
    linear-gradient(rgba(255, 255, 240, 0.5) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(255, 255, 240, 0.5) 1px,
      transparent 1px);

  background-size: 70px 70px;

  mask-image:
    linear-gradient(to bottom,
      transparent,
      black 20%,
      black 80%,
      transparent);
}


/* =========================================
   BACKGROUND GLOW
========================================= */

.why-matters-glow {

  position: absolute;

  width: 400px;
  height: 400px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(212, 175, 55, 0.10),
      transparent 65%);

  filter: blur(20px);

  pointer-events: none;

  z-index: -1;

  animation: slowGlow 8s ease-in-out infinite alternate;
}


.why-glow-one {

  top: -200px;

  left: -180px;
}


.why-glow-two {

  right: -200px;

  bottom: -250px;

  animation-delay: 2s;
}


@keyframes slowGlow {

  0% {
    transform: scale(0.9);
    opacity: 0.4;
  }

  100% {
    transform: scale(1.15);
    opacity: 0.8;
  }

}


/* =========================================
   MAIN CONTAINER
========================================= */

.why-matters-container {

  position: relative;

  max-width: 1200px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(350px, 0.85fr) minmax(400px, 1.15fr);

  align-items: center;

  gap: 100px;
}


/* =========================================
   LEFT VISUAL
========================================= */

.why-matters-visual {

  position: relative;

  height: 520px;

  display: flex;

  align-items: center;

  justify-content: center;
}


/* =========================================
   ORBIT CIRCLES
========================================= */

.visual-orbit {

  position: absolute;

  border-radius: 50%;

  border: 1px solid rgba(212, 175, 55, 0.22);

  pointer-events: none;
}


.orbit-one {

  width: 400px;
  height: 400px;

  animation:
    rotateOrbit 18s linear infinite;
}


.orbit-two {

  width: 290px;
  height: 290px;

  border-style: dashed;

  border-color:
    rgba(255, 255, 240, 0.12);

  animation:
    rotateOrbitReverse 14s linear infinite;
}


@keyframes rotateOrbit {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}


@keyframes rotateOrbitReverse {

  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }

}


/* =========================================
   LARGE NUMBER
========================================= */

.visual-number {

  position: absolute;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 280px;

  font-weight: 500;

  line-height: 1;

  color:
    rgba(255, 255, 240, 0.025);

  user-select: none;
}


.visual-number span {

  display: block;

  animation:
    numberFloat 5s ease-in-out infinite;
}


@keyframes numberFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

}


/* =========================================
   CENTER CIRCLE
========================================= */

.visual-center {

  position: relative;

  width: 190px;
  height: 190px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background:
    radial-gradient(circle at 35% 30%,
      rgba(255, 255, 240, 0.08),
      rgba(0, 66, 37, 0.9) 65%);

  border:
    1px solid rgba(212, 175, 55, 0.55);

  box-shadow:

    0 0 0 15px rgba(212, 175, 55, 0.025),

    0 0 0 30px rgba(212, 175, 55, 0.015),

    0 20px 50px rgba(0, 0, 0, 0.15);

  animation:
    centerPulse 4s ease-in-out infinite;
}


@keyframes centerPulse {

  0%,
  100% {

    box-shadow:

      0 0 0 15px rgba(212, 175, 55, 0.025),

      0 0 0 30px rgba(212, 175, 55, 0.015),

      0 20px 50px rgba(0, 0, 0, 0.15);

  }

  50% {

    box-shadow:

      0 0 0 20px rgba(212, 175, 55, 0.045),

      0 0 0 42px rgba(212, 175, 55, 0.018),

      0 20px 60px rgba(0, 0, 0, 0.18);

  }

}


.center-text {

  color: var(--ivory);

  font-family: "Inter", sans-serif;

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 4px;
}


.center-dot {

  position: absolute;

  top: 28px;
  right: 32px;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--gold);

  box-shadow:
    0 0 12px rgba(212, 175, 55, 0.8);

  animation:
    dotPulse 2s infinite;
}


@keyframes dotPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }

}


/* =========================================
   FLOATING LABELS
========================================= */

.floating-label {

  position: absolute;

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 12px 18px;

  border:
    1px solid rgba(212, 175, 55, 0.22);

  border-radius: 50px;

  background:
    rgba(0, 66, 37, 0.65);

  backdrop-filter: blur(10px);

  color:
    rgba(255, 255, 240, 0.75);

  font-family: "Inter", sans-serif;

  font-size: 12px;

  white-space: nowrap;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.12);

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}


.floating-label:hover {

  transform: translateY(-5px);

  border-color:
    rgba(212, 175, 55, 0.65);

  box-shadow:
    0 10px 35px rgba(212, 175, 55, 0.10);
}


.label-icon {

  color: var(--gold);

  font-size: 11px;
}


.label-one {

  top: 75px;

  right: 0;

  animation:
    floatOne 5s ease-in-out infinite;
}


.label-two {

  bottom: 105px;

  left: 0;

  animation:
    floatTwo 6s ease-in-out infinite;
}


.label-three {

  bottom: 35px;

  right: 35px;

  animation:
    floatThree 5.5s ease-in-out infinite;
}


@keyframes floatOne {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

}


@keyframes floatTwo {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }

}


@keyframes floatThree {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }

}


/* =========================================
   CONTENT
========================================= */

.why-matters-content {

  max-width: 620px;
}


/* =========================================
   EYEBROW
========================================= */

.why-matters-eyebrow {

  display: flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 22px;

  color: var(--gold);

  font-family: "Inter", sans-serif;

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 4px;
}


.eyebrow-line {

  width: 40px;

  height: 1px;

  background: var(--gold);

  box-shadow:
    0 0 8px rgba(212, 175, 55, 0.4);
}


/* =========================================
   HEADING
========================================= */

.why-matters-content h2 {

  margin: 0;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size:
    clamp(45px, 5vw, 70px);

  font-weight: 500;

  line-height: 1.05;

  letter-spacing: -1px;

  color: var(--ivory);
}


.why-matters-content h2 span {

  display: block;

  color: var(--gold);

  font-style: normal;

  margin-top: 5px;
}


/* =========================================
   DIVIDER
========================================= */

.content-divider {

  width: 100%;

  height: 1px;

  margin: 35px 0;

  background:
    linear-gradient(90deg,
      rgba(212, 175, 55, 0.5),
      rgba(212, 175, 55, 0.08),
      transparent);
}


/* =========================================
   PARAGRAPHS
========================================= */

.why-matters-content p {

  margin: 0 0 20px;

  color:
    rgba(255, 255, 240, 0.72);

  font-family: "Inter", sans-serif;

  font-size: 16px;

  line-height: 1.85;
}


/* =========================================
   HIGHLIGHT BOX
========================================= */

.credibility-highlight {

  position: relative;

  display: flex;

  align-items: center;

  gap: 18px;

  margin-top: 35px;

  padding: 20px 22px;

  border:
    1px solid rgba(212, 175, 55, 0.20);

  border-radius: 14px;

  background:
    linear-gradient(100deg,
      rgba(212, 175, 55, 0.06),
      rgba(255, 255, 240, 0.015));

  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s ease;
}


.credibility-highlight:hover {

  transform: translateX(6px);

  border-color:
    rgba(212, 175, 55, 0.55);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.12),

    0 0 25px rgba(212, 175, 55, 0.06);
}


/* =========================================
   HIGHLIGHT ICON
========================================= */

.highlight-icon {

  flex-shrink: 0;

  width: 45px;
  height: 45px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  border:
    1px solid rgba(212, 175, 55, 0.45);

  color: var(--gold);

  font-size: 15px;
}


.highlight-content {

  display: flex;

  flex-direction: column;

  gap: 4px;
}


.highlight-label {

  color:
    rgba(255, 255, 240, 0.45);

  font-family: "Inter", sans-serif;

  font-size: 9px;

  font-weight: 600;

  letter-spacing: 2px;
}


.highlight-content strong {

  color: var(--ivory);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 21px;

  font-weight: 500;
}


.highlight-arrow {

  margin-left: auto;

  color: var(--gold);

  font-size: 24px;

  transition:
    transform 0.3s ease;
}


.credibility-highlight:hover .highlight-arrow {

  transform: translateX(6px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

  .why-matters-section {

    padding: 100px 24px;
  }

  .why-matters-container {

    grid-template-columns: 1fr;

    gap: 50px;

    max-width: 750px;
  }

  .why-matters-visual {

    height: 430px;

    order: 2;
  }

  .why-matters-content {

    order: 1;

    max-width: 100%;
  }

  .orbit-one {

    width: 330px;
    height: 330px;
  }

  .orbit-two {

    width: 240px;
    height: 240px;
  }

  .label-one {

    right: 10%;
  }

  .label-two {

    left: 10%;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .why-matters-section {

    padding: 80px 18px;
  }

  .why-matters-container {

    gap: 45px;
  }

  .why-matters-eyebrow {

    font-size: 10px;

    letter-spacing: 3px;
  }

  .why-matters-content h2 {

    font-size: 46px;

    line-height: 1.08;
  }

  .why-matters-content p {

    font-size: 14px;

    line-height: 1.8;
  }

  .why-matters-visual {

    height: 360px;
  }

  .visual-number {

    font-size: 200px;
  }

  .orbit-one {

    width: 270px;
    height: 270px;
  }

  .orbit-two {

    width: 200px;
    height: 200px;
  }

  .visual-center {

    width: 150px;
    height: 150px;
  }

  .center-text {

    font-size: 9px;

    letter-spacing: 3px;
  }

  .label-one {

    top: 15px;

    right: 0;
  }

  .label-two {

    bottom: 55px;

    left: 0;
  }

  .label-three {

    bottom: 5px;

    right: 0;
  }

  .floating-label {

    padding: 9px 13px;

    font-size: 10px;
  }

  .credibility-highlight {

    padding: 17px;

    gap: 12px;
  }

  .highlight-icon {

    width: 38px;
    height: 38px;
  }

  .highlight-content strong {

    font-size: 18px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

  .why-matters-content h2 {

    font-size: 40px;
  }

  .why-matters-visual {

    transform: scale(0.9);

    margin:
      -20px 0;
  }

  .floating-label {

    font-size: 9px;
  }

}

/* ==========================================
   IT SERVICES
   CONSULTATION CTA SECTION
========================================== */

.it-consultation-section {
  position: relative;

  width: 100%;

  padding: 120px 6%;

  background: #004225;

  overflow: hidden;

  isolation: isolate;
}


/* ==========================================
   TECHNOLOGY GRID
========================================== */

.it-tech-grid {
  position: absolute;

  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 240, 0.025) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(255, 255, 240, 0.025) 1px,
      transparent 1px);

  background-size: 70px 70px;

  mask-image:
    linear-gradient(to bottom,
      transparent,
      black 20%,
      black 80%,
      transparent);

  opacity: 0.5;

  pointer-events: none;

  z-index: -2;

  animation:
    itGridMove 20s linear infinite;
}


@keyframes itGridMove {

  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(70px, 70px);
  }

}


/* ==========================================
   BACKGROUND GLOW
========================================== */

.it-consultation-section::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  top: -350px;
  right: -250px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(212, 175, 55, 0.09),
      transparent 65%);

  pointer-events: none;

  z-index: -1;
}


.it-consultation-section::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  bottom: -350px;
  left: -250px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(255, 255, 240, 0.035),
      transparent 65%);

  pointer-events: none;

  z-index: -1;
}


/* ==========================================
   GLOWING TECHNOLOGY NODES
========================================== */

.it-tech-node {
  position: absolute;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #D4AF37;

  box-shadow:
    0 0 12px rgba(212, 175, 55, 0.8),
    0 0 30px rgba(212, 175, 55, 0.25);

  animation:
    itNodePulse 3s ease-in-out infinite;
}


.it-node-one {
  top: 25%;

  left: 8%;
}


.it-node-two {
  top: 20%;

  right: 15%;

  animation-delay: 1s;
}


.it-node-three {
  bottom: 22%;

  right: 8%;

  animation-delay: 2s;
}


@keyframes itNodePulse {

  0%,
  100% {
    transform: scale(1);

    opacity: 0.5;
  }

  50% {
    transform: scale(2);

    opacity: 1;
  }

}


/* ==========================================
   ORBIT
========================================== */

.it-consultation-orbit {
  position: absolute;

  width: 450px;
  height: 450px;

  top: 5%;
  right: -280px;

  border: 1px solid rgba(212, 175, 55, 0.1);

  border-radius: 50%;

  pointer-events: none;

  animation:
    itOrbitRotate 22s linear infinite;
}


.it-consultation-orbit::before {
  content: "";

  position: absolute;

  width: 8px;
  height: 8px;

  top: 50px;
  left: 80px;

  border-radius: 50%;

  background: #D4AF37;

  box-shadow:
    0 0 20px rgba(212, 175, 55, 0.8);
}


@keyframes itOrbitRotate {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}


/* ==========================================
   MAIN CONTAINER
========================================== */

.it-consultation-container {
  position: relative;

  max-width: 1250px;

  margin: 0 auto;
}


/* ==========================================
   MAIN CONTENT
========================================== */

.it-consultation-content {
  max-width: 850px;

  margin: 0 auto;

  text-align: center;
}


/* ==========================================
   EYEBROW
========================================== */

.it-consultation-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 25px;

  color: #D4AF37;

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 3px;
}


.it-consultation-eyebrow::before,
.it-consultation-eyebrow::after {
  content: "";

  width: 35px;

  height: 1px;

  background: #D4AF37;
}


/* ==========================================
   HEADING
========================================== */

.it-consultation-content h2 {
  margin: 0 0 25px;

  color: #FFFFF0;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(48px, 6vw, 78px);

  font-weight: 500;

  line-height: 1.02;

  letter-spacing: -1.5px;
}


.it-consultation-content h2 span {
  display: block;

  color: #D4AF37;

  font-style: normal;
}


/* ==========================================
   DESCRIPTION
========================================== */

.it-consultation-content>p {
  max-width: 700px;

  margin: 0 auto 35px;

  color: rgba(255, 255, 240, 0.68);

  font-family: "Inter", Arial, sans-serif;

  font-size: 15px;

  line-height: 1.85;
}


/* ==========================================
   CTA ACTIONS
========================================== */

.it-consultation-actions {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  flex-wrap: wrap;
}


/* ==========================================
   PRIMARY BUTTON
========================================== */

.it-consultation-primary {
  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-consultation-primary:hover {
  transform: translateY(-5px);

  background: #FFFFF0;

  border-color: #FFFFF0;

  color: #004225;

  box-shadow:
    0 20px 45px rgba(212, 175, 55, 0.2);
}


/* ==========================================
   SECONDARY BUTTON
========================================== */

.it-consultation-secondary {
  display: inline-flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  min-height: 58px;

  padding: 0 24px;

  background: rgba(255, 255, 240, 0.025);

  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,
    background 0.35s ease;
}


.it-consultation-secondary:hover {
  transform: translateY(-5px);

  color: #D4AF37;

  border-color: #D4AF37;

  background: rgba(212, 175, 55, 0.04);
}


.it-consultation-arrow {
  font-size: 19px;

  transition:
    transform 0.3s ease;
}


.it-consultation-primary:hover .it-consultation-arrow {
  transform: translateX(6px);
}


.it-consultation-secondary:hover .it-consultation-arrow {
  transform: translate(4px, -4px);
}


/* ==========================================
   SERVICE STRIP
========================================== */

.it-service-strip {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  margin-top: 90px;

  border-top: 1px solid rgba(255, 255, 240, 0.13);

  border-bottom: 1px solid rgba(255, 255, 240, 0.13);
}


/* ==========================================
   SERVICE ITEM
========================================== */

.it-service-item {
  position: relative;

  display: grid;

  grid-template-columns: 35px 1fr 20px;

  gap: 15px;

  align-items: center;

  min-height: 150px;

  padding: 25px 30px;

  border-right: 1px solid rgba(255, 255, 240, 0.1);

  transition:
    background 0.4s ease;
}


.it-service-item:last-child {
  border-right: none;
}


.it-service-item:hover {
  background:
    rgba(255, 255, 240, 0.035);
}


/* ==========================================
   SERVICE NUMBER
========================================== */

.it-service-number {
  align-self: start;

  color: #D4AF37;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 18px;

  font-weight: 600;
}


/* ==========================================
   SERVICE CONTENT
========================================== */

.it-service-item h3 {
  margin: 0 0 6px;

  color: #FFFFF0;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 24px;

  font-weight: 500;
}


.it-service-item p {
  margin: 0;

  color: rgba(255, 255, 240, 0.45);

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;

  line-height: 1.6;
}


/* ==========================================
   SERVICE ARROW
========================================== */

.it-service-arrow {
  color: rgba(212, 175, 55, 0.55);

  font-size: 18px;

  transition:
    transform 0.3s ease,
    color 0.3s ease;
}


.it-service-item:hover .it-service-arrow {
  transform: translateX(5px);

  color: #D4AF37;
}


/* ==========================================
   BOTTOM NOTE
========================================== */

.it-consultation-note {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 20px;

  margin-top: 45px;
}


.it-consultation-note p {
  margin: 0;

  color: rgba(255, 255, 240, 0.45);

  font-family: "Inter", Arial, sans-serif;

  font-size: 11px;

  text-align: center;
}


.it-consultation-note a {
  color: #D4AF37;

  text-decoration: none;

  border-bottom: 1px solid rgba(212, 175, 55, 0.4);

  transition:
    border-color 0.3s ease;
}


.it-consultation-note a:hover {
  border-color: #D4AF37;
}


.it-note-line {
  width: 45px;

  height: 1px;

  background: rgba(212, 175, 55, 0.3);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

  .it-consultation-section {
    padding: 90px 5%;
  }


  .it-service-strip {
    grid-template-columns: 1fr;
  }


  .it-service-item {
    border-right: none;

    border-bottom: 1px solid rgba(255, 255, 240, 0.1);
  }


  .it-service-item:last-child {
    border-bottom: none;
  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

  .it-consultation-section {
    padding: 75px 20px;
  }


  .it-consultation-content h2 {
    font-size: 46px;

    letter-spacing: -0.8px;
  }


  .it-consultation-content>p {
    font-size: 14px;

    line-height: 1.75;
  }


  .it-consultation-actions {
    flex-direction: column;

    width: 100%;
  }


  .it-consultation-primary,
  .it-consultation-secondary {
    width: 100%;
  }


  .it-service-item {
    padding: 25px 18px;
  }


  .it-consultation-note {
    flex-direction: column;

    gap: 12px;
  }


  .it-note-line {
    display: none;
  }

}