/* =========================================================
   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: 1.0;

  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;
  }

}


/* =========================================
   MAIN SECTION
========================================= */

.mainland-section {
  min-height: auto;
  padding: 50px 5% 80px;
  background: var(--green);
  overflow-x: clip;
}


/* =========================================
   HEADER
========================================= */

.mainland-header {

  max-width:
    850px;

  margin:
    auto;

  text-align:
    center;

}


.eyebrow {

  color:
    var(--gold);

  font-size:
    11px;

  font-weight:
    700;

  letter-spacing:
    3px;

}


.mainland-header h1 {

  margin-top:
    15px;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size:
    clamp(55px,
      6vw,
      85px);

  line-height:
    .95;

  font-weight:
    600;

  color: #ffffff;

}



.mainland-header span {
  color:
    var(--bexford-gold);
}

.mainland-header p {

  max-width:
    700px;

  margin:
    25px auto 0;

  color: #ffffff;
  opacity: 0.9;

  font-size:
    15px;

  line-height:
    1.7;

}


/* =========================================
   TWO COLUMN LAYOUT
========================================= */

.mainland-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 50px;
  max-width: 1250px;
  margin: 50px auto 0;
}

.mainland-orbit-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mainland-info-col {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* =========================================
   ORBIT SYSTEM
========================================= */

.orbit-system {
  position: relative;
  width: 500px;
  height: 500px;
}

/* =========================================
   CENTER STRATEGIC MAINLAND
========================================= */

.strategic-mainland {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 28px;
  background: rgba(255, 255, 240, 0.05);
  z-index: 20;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.3),
    0 0 35px rgba(212, 175, 55, 0.45),
    inset 0 0 25px rgba(212, 175, 55, 0.1);
  animation: centerGlow 3s ease-in-out infinite alternate;
}

.strategic-mainland span {
  color:
    var(--bexford-gold);
}

@keyframes centerGlow {
  from {
    box-shadow:
      0 0 0 1px rgba(212, 175, 55, 0.2),
      0 0 25px rgba(212, 175, 55, 0.3),
      inset 0 0 15px rgba(212, 175, 55, 0.1);
  }

  to {
    box-shadow:
      0 0 0 2px rgba(212, 175, 55, 0.4),
      0 0 50px rgba(212, 175, 55, 0.6),
      inset 0 0 35px rgba(212, 175, 55, 0.2);
  }
}

.strategic-mainland span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.strategic-mainland h2 {
  margin-top: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  color: var(--ivory);
  font-weight: 600;
}

/* =========================================
   ORBIT RING
========================================= */

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.25);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.06);
  animation: orbitRotate 15s linear infinite;
  z-index: 5;
}

@keyframes orbitRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* =========================================
   ORBIT ITEMS
========================================= */

.orbit-item {
  position: absolute;
  width: 0;
  height: 0;
}

/* 7 ITEMS PERFECTLY SPACED ON CIRCLE */
.item-1 {
  left: 50%;
  top: 0;
}

.item-2 {
  left: 89.1%;
  top: 18.8%;
}

.item-3 {
  left: 98.7%;
  top: 61.1%;
}

.item-4 {
  left: 71.7%;
  top: 95%;
}

.item-5 {
  left: 28.3%;
  top: 95%;
}

.item-6 {
  left: 1.3%;
  top: 61.1%;
}

.item-7 {
  left: 10.9%;
  top: 18.8%;
}

/* Keep items upright */
.orbit-item>* {
  animation: counterRotate 15s linear infinite;
}

@keyframes counterRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

/* =========================================
   ICON
========================================= */

.orbit-icon {
  position: absolute;
  left: -45px;
  top: -45px;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  background: rgba(0, 66, 37, 0.85);
  color: rgba(212, 175, 55, 0.45);
  font-size: 26px;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

/* =========================================
   ACTIVE ICON GLOW & SCALE
========================================= */

.orbit-item.active .orbit-icon {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.15);
  transform: scale(1.15);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.25),
    0 0 25px rgba(212, 175, 55, 0.4),
    0 0 55px rgba(212, 175, 55, 0.25);
}

.orbit-item.active .orbit-icon::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  border: 1px solid var(--gold);
  opacity: 0;
  animation: glowPulse 2s ease-out infinite;
}

@keyframes glowPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Pause on Hover */
.mainland-layout:hover .orbit,
.mainland-layout:hover .orbit-item>* {
  animation-play-state: paused;
}


/* =========================================
   RIGHT INFO CARD
========================================= */

.dynamic-info-card {
  width: 100%;
  max-width: 420px;
  min-height: 340px;
  padding: 45px 40px;
  background-color: rgba(0, 66, 37, 0.6);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  transition: background-image 0.5s ease-in-out;
}

.dynamic-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 40, 20, 0.65) 0%, rgba(0, 30, 15, 0.85) 100%);
  z-index: -1;
}

.card-content-wrapper {
  opacity: 1;
}

.card-content-wrapper.fade-slide {
  animation: fadeSlideInfo 0.5s ease-out forwards;
}

@keyframes fadeSlideInfo {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-eyebrow {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.card-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  color: #ffffff;
  margin: 0 0 18px 0;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
  opacity: 1;
  margin: 0 0 25px 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.card-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.card-benefits li i {
  color: var(--gold);
  font-size: 13px;
  margin-top: 3px;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 950px) {
  .mainland-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 30px;
  }

  .orbit-system {
    width: 420px;
    height: 420px;
  }

  .orbit {
    width: 420px;
    height: 420px;
  }

  .mainland-info-col {
    justify-content: center;
  }

  .dynamic-info-card {
    max-width: 500px;
  }
}

@media (max-width: 550px) {
  .mainland-layout {
    gap: 30px;
  }

  .mainland-orbit-col {
    width: 100%;
    overflow: hidden;
    padding: 46px 0;
    display: flex;
    justify-content: center;
  }

  .orbit-system {
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }

  .orbit {
    width: 260px;
    height: 260px;
    border: 1px dashed rgba(212, 175, 55, 0.35);
  }

  .strategic-mainland {
    width: 105px;
    height: 105px;
    border-radius: 18px;
  }

  .strategic-mainland h2 {
    font-size: 15px;
    white-space: nowrap;
  }

  .strategic-mainland span {
    font-size: 8px;
  }

  .orbit-icon {
    width: 46px;
    height: 46px;
    left: -23px;
    top: -23px;
    font-size: 15px;
    border-radius: 13px;
  }

  .dynamic-info-card {
    min-height: auto;
    padding: 30px 25px;
  }

  .card-title {
    font-size: 26px;
  }

  .card-desc {
    font-size: 14px;
  }

  .card-benefits li {
    font-size: 13px;
  }
}

/* =========================================
   BUILT FOR AMBITIOUS BUSINESSES
========================================= */

.ambitious-businesses {
  --bg: #004225;
  --ivory: #FFFFF0;
  --gold: #D4AF37;

  position: relative;
  width: 100%;
  padding: 120px 40px;

  background:
    radial-gradient(circle at 20% 20%,
      rgba(212, 175, 55, 0.035) 1px,
      transparent 1px),
    #004225;

  background-size: 32px 32px;

  overflow: hidden;
}


/* =========================================
   CONTAINER
========================================= */

.ambitious-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.ambitious-header {
  max-width: 700px;
  margin-bottom: 70px;
}

.ambitious-eyebrow {
  display: inline-block;

  margin-bottom: 18px;

  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;

  letter-spacing: 3px;
  text-transform: uppercase;

  color: #D4AF37;
}


.ambitious-header h2 {
  margin: 0;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(42px, 4vw, 66px);
  line-height: 0.95;

  font-weight: 500;

  color: #FFFFF0;
}


.ambitious-header h2 span {
  display: block;

  font-style: normal;

  color: #D4AF37;
}


.ambitious-header p {
  margin-top: 28px;

  max-width: 600px;

  font-family: "Inter", sans-serif;

  font-size: 17px;
  line-height: 1.7;

  color: rgba(255, 255, 240, 0.68);
}


/* =========================================
   CARD GRID
========================================= */

.ambitious-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  align-items: stretch;
}


/* =========================================
   CARD
========================================= */

.ambitious-card {
  position: relative;
  width: calc(25% - 19.5px);
  min-height: auto;

  padding: 40px 38px 32px;

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(255, 255, 240, 0.08);

  border-radius: 26px;

  background:
    linear-gradient(145deg,
      rgba(255, 255, 240, 0.07),
      rgba(255, 255, 240, 0.025));

  overflow: hidden;

  transition:
    transform 0.6s cubic-bezier(.2, .8, .2, 1),
    border-color 0.5s ease,
    box-shadow 0.5s ease,
    background 0.5s ease;
}


/* =========================================
   CARD LIGHT EFFECT
========================================= */

.ambitious-card::before {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  top: -120px;
  right: -100px;

  border-radius: 50%;

  background: rgba(212, 175, 55, 0.13);

  filter: blur(60px);

  opacity: 0;

  transition: opacity 0.6s ease;
}


/* =========================================
   CARD HOVER
========================================= */

.ambitious-card:hover {

  transform:
    translateY(-15px) scale(1.02);

  border-color:
    rgba(212, 175, 55, 0.65);

  background:
    linear-gradient(145deg,
      rgba(212, 175, 55, 0.12),
      rgba(255, 255, 240, 0.04));

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.22),

    0 0 35px rgba(212, 175, 55, 0.08);
}


.ambitious-card:hover::before {
  opacity: 1;
}


/* =========================================
   ICON
========================================= */

.card-icon {

  position: relative;

  width: 0px;
  height: 60px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    rgba(255, 255, 240, 0.08);

  border:
    1px solid rgba(255, 255, 240, 0.08);

  transition:
    transform 0.5s ease,
    background 0.5s ease,
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}


.card-icon span {

  font-size: 25px;

  color: #D4AF37;

  filter:
    drop-shadow(0 0 0 rgba(212, 175, 55, 0));

  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}


.ambitious-card:hover .card-icon {

  transform:
    translateY(-5px) rotate(-6deg);

  background:
    rgba(212, 175, 55, 0.14);

  border-color:
    rgba(212, 175, 55, 0.5);

  box-shadow:
    0 0 30px rgba(212, 175, 55, 0.18);
}


.ambitious-card:hover .card-icon span {

  transform: scale(1.12);

  filter:
    drop-shadow(0 0 12px rgba(212, 175, 55, 0.7));
}


/* =========================================
   CARD NUMBER
========================================= */

.card-number {

  position: absolute;

  top: 38px;
  right: 38px;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 24px;

  color:
    rgba(255, 255, 240, 0.2);

  transition:
    color 0.4s ease;
}


.ambitious-card:hover .card-number {

  color:
    rgba(212, 175, 55, 0.7);
}


/* =========================================
   CARD CONTENT
========================================= */

.card-content {

  margin: auto 0;

  padding-top: 0;
}


.card-content h3 {

  margin: 0 0 20px;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 32px;

  font-weight: 500;

  color: #FFFFF0;

  transition:
    color 0.4s ease,
    transform 0.4s ease;
}


.ambitious-card:hover .card-content h3 {

  color: #D4AF37;

  transform:
    translateX(4px);
}


.card-content p {

  margin: 0;

  max-width: 280px;

  font-family:
    "Inter",
    sans-serif;

  font-size: 15px;

  line-height: 1.75;

  color:
    rgba(255, 255, 240, 0.62);
}


/* =========================================
   BOTTOM AREA
========================================= */

.card-bottom {

  margin-top: 40px;

  padding-top: 22px;

  border-top:
    1px solid rgba(255, 255, 240, 0.09);

  display: flex;

  align-items: center;
  justify-content: space-between;

  font-family:
    "Inter",
    sans-serif;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 0.5px;

  text-transform: uppercase;

  color: #D4AF37;
}


.card-arrow {

  font-size: 25px;

  transition:
    transform 0.4s ease;
}


.ambitious-card:hover .card-arrow {

  transform:
    translate(5px, -5px);
}


/* =========================================
   ACTIVE CARD
========================================= */

.active-card {

  border-color:
    rgba(212, 175, 55, 0.45);

  box-shadow:
    0 0 35px rgba(212, 175, 55, 0.06);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .ambitious-card {
    width: calc(50% - 13px);
  }
}


@media (max-width: 700px) {

  .ambitious-businesses {

    padding:
      80px 20px;
  }


  .ambitious-header {

    margin-bottom: 45px;
  }


  .ambitious-header h2 {

    font-size: 54px;
  }


  .ambitious-header p {

    font-size: 15px;
  }


  .ambitious-grid {
    gap: 20px;
  }

  .ambitious-card {
    width: 100%;

    min-height: 220px;

    padding:
      30px 26px 26px;

    border-radius: 22px;
  }


  .card-content {

    padding-top: 10px;
  }


  .card-content h3 {

    font-size: 29px;
  }


  .card-bottom {

    margin-top: 30px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

  .ambitious-header h2 {

    font-size: 46px;
  }


  .ambitious-card {

    min-height: 200px;
  }

}

/* =========================================
   LICENSE SECTION
========================================= */

:root {

  /* Brand Colors */
  --bg-primary: #004225;
  --bg-card: #0a5135;
  --bg-card-hover: #0d5a3d;

  --ivory: #FFFFF0;
  --gold: #D4AF37;

  --gold-soft: rgba(212, 175, 55, 0.35);
  --gold-glow: rgba(212, 175, 55, 0.18);

  --text-muted: rgba(255, 255, 240, 0.72);

  /* Fonts */
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Inter", sans-serif;
}


/* =========================================
   RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  background: var(--bg-primary);
  color: var(--ivory);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

.mainland-section {

  background:

    radial-gradient(circle at 20% 20%,
      rgba(212, 175, 55, 0.025),
      transparent 30%),

    radial-gradient(circle at 80% 70%,
      rgba(212, 175, 55, 0.025),
      transparent 30%),

    var(--bg-primary);
}

/* =========================================
   SECTION
========================================= */

.license-section {

  position: relative;

  width: 100%;

  padding: 120px 6vw 130px;

  overflow: hidden;

  background:

    radial-gradient(circle at 20% 20%,
      rgba(212, 175, 55, 0.025),
      transparent 30%),

    radial-gradient(circle at 80% 70%,
      rgba(212, 175, 55, 0.025),
      transparent 30%),

    var(--bg-primary);
}


/* Subtle background dots */

.license-section::before {

  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  opacity: 0.15;

  background-image:

    radial-gradient(rgba(212, 175, 55, 0.35) 1px,
      transparent 1px);

  background-size: 55px 55px;

  mask-image: linear-gradient(to bottom,
      transparent,
      black 15%,
      black 85%,
      transparent);
}


/* =========================================
   CONTAINER
========================================= */

.license-container {

  position: relative;

  z-index: 2;

  max-width: 1280px;

  margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.license-heading {

  max-width: 800px;

  margin: 0 auto 75px;

  text-align: center;

  animation: headingReveal 1s ease both;
}


.section-label {

  display: block;

  margin-bottom: 15px;

  color: var(--gold);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;
}


.license-heading h2 {

  color: var(--ivory);

  font-family: var(--font-serif);

  font-size: clamp(48px, 5vw, 76px);

  line-height: 0.95;

  font-weight: 600;

  letter-spacing: -1px;
}


.license-heading h2 span {

  color: var(--gold);

  font-style: normal;
}


.license-heading p {
  max-width: 850px;
  margin: 25px auto 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.8;
}


/* =========================================
   GRID
========================================= */

.license-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}


/* =========================================
   CARD
========================================= */

.license-card {

  position: relative;

  min-height: 330px;

  padding: 48px 42px;

  width: 100%;
  max-width: 380px;
  margin: 0 auto;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: flex-start;

  text-align: center;

  background:

    linear-gradient(145deg,
      rgba(255, 255, 240, 0.035),
      rgba(255, 255, 240, 0.01)),

    var(--bg-card);

  border: 1px solid rgba(212, 175, 55, 0.22);

  border-radius: 24px;

  overflow: hidden;

  transition:

    transform 0.55s cubic-bezier(.2, .8, .2, 1),

    border-color 0.45s ease,

    box-shadow 0.45s ease,

    background 0.45s ease;

  animation: cardReveal 0.8s ease both;
}


/* Individual animation delays */

.license-card:nth-child(1) {
  animation-delay: 0.1s;
}

.license-card:nth-child(2) {
  animation-delay: 0.2s;
}

.license-card:nth-child(3) {
  animation-delay: 0.3s;
}

.license-card:nth-child(4) {
  animation-delay: 0.4s;
}

.license-card:nth-child(5) {
  animation-delay: 0.5s;
}

.license-card:nth-child(6) {
  animation-delay: 0.6s;
}


/* Gold shine */

.license-card::before {

  content: "";

  position: absolute;

  top: -100%;

  left: -80%;

  width: 60%;

  height: 300%;

  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 240, 0.07),
      transparent);

  transform: rotate(25deg);

  transition: left 0.8s ease;

  pointer-events: none;
}


/* Hover */

.license-card:hover {

  transform:
    translateY(-12px) scale(1.015);

  background: var(--bg-card-hover);

  border-color: var(--gold);

  box-shadow:

    0 20px 50px rgba(0, 0, 0, 0.16),

    0 0 35px var(--gold-glow),

    inset 0 0 25px rgba(212, 175, 55, 0.035);
}


.license-card:hover::before {

  left: 140%;
}


/* =========================================
   ICON
========================================= */

.license-icon {

  width: 78px;

  height: 78px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 32px;

  border-radius: 50%;

  color: var(--gold);

  font-size: 30px;

  background:

    rgba(212, 175, 55, 0.08);

  border: 1px solid rgba(212, 175, 55, 0.28);

  transition:

    transform 0.5s ease,

    background 0.5s ease,

    box-shadow 0.5s ease,

    border-color 0.5s ease;
}


/* Icon hover */

.license-card:hover .license-icon {

  transform:

    translateY(-5px) rotate(5deg);

  background:

    rgba(212, 175, 55, 0.14);

  border-color: var(--gold);

  box-shadow:

    0 0 20px rgba(212, 175, 55, 0.25),

    0 0 45px rgba(212, 175, 55, 0.10);
}


/* =========================================
   CARD CONTENT
========================================= */

.license-content h3 {

  margin-bottom: 20px;

  color: var(--ivory);

  font-family: var(--font-serif);

  font-size: 28px;

  font-weight: 600;

  transition: color 0.4s ease;
}


.license-card:hover .license-content h3 {

  color: var(--gold);
}


.license-content p {

  max-width: 300px;

  color: var(--text-muted);

  font-size: 15px;

  line-height: 1.8;

  transition:

    color 0.4s ease,

    transform 0.4s ease;
}


.license-card:hover .license-content p {

  color: rgba(255, 255, 240, 0.86);

  transform: translateY(-2px);
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes cardReveal {

  from {

    opacity: 0;

    transform:
      translateY(50px) scale(0.96);
  }

  to {

    opacity: 1;

    transform:
      translateY(0) scale(1);
  }
}


@keyframes headingReveal {

  from {

    opacity: 0;

    transform: translateY(30px);
  }

  to {

    opacity: 1;

    transform: translateY(0);
  }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

  .license-section {

    padding:
      100px 5vw 110px;
  }


  .license-grid {

    grid-template-columns:
      repeat(2, 1fr);

    gap: 25px;
  }


  .license-card {

    min-height: 350px;

    padding: 42px 30px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

  .license-section {

    padding:
      80px 20px 90px;
  }


  .license-heading {

    margin-bottom: 50px;
  }


  .section-label {

    font-size: 10px;

    letter-spacing: 2px;
  }


  .license-heading h2 {

    font-size: 48px;

    line-height: 1;
  }


  .license-heading p {

    margin-top: 20px;

    font-size: 14px;

    line-height: 1.7;
  }


  .license-grid {

    grid-template-columns: 1fr;

    gap: 20px;
  }


  .license-card {

    min-height: auto;

    padding: 38px 28px 42px;

    border-radius: 20px;
  }


  .license-icon {

    width: 70px;

    height: 70px;

    margin-bottom: 25px;

    font-size: 26px;
  }


  .license-content h3 {

    font-size: 27px;

    margin-bottom: 15px;
  }


  .license-content p {

    max-width: 100%;

    font-size: 14px;

    line-height: 1.7;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

  .license-heading h2 {

    font-size: 42px;
  }


  .license-card {

    padding:
      32px 22px 36px;
  }
}


/* =========================================
   REDUCE MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {

    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }
}

/* =====================================================
   DED LICENSING PROCESS
===================================================== */

:root {

  --ded-green: #004225;

  --ded-green-dark: #00351e;

  --ded-green-light: #0a5135;

  --ded-ivory: #FFFFF0;

  --ded-gold: #D4AF37;

  --ded-gold-soft:
    rgba(212, 175, 55, 0.25);

  --ded-gold-glow:
    rgba(212, 175, 55, 0.18);

  --ded-muted:
    rgba(255, 255, 240, 0.68);
}


/* =====================================================
   SECTION
===================================================== */

.ded-process {

  position: relative;

  width: 100%;

  padding: 130px 5vw;

  overflow: hidden;

  color: var(--ded-ivory);

  background:

    radial-gradient(circle at 15% 50%,
      rgba(212, 175, 55, 0.05),
      transparent 30%),

    radial-gradient(circle at 85% 20%,
      rgba(212, 175, 55, 0.04),
      transparent 28%),

    var(--ded-green);
}


/* Subtle decorative glow */

.ded-process::before {

  content: "";

  position: absolute;

  width: 500px;

  height: 500px;

  top: 20%;

  left: 50%;

  transform: translateX(-50%);

  border-radius: 50%;

  background:
    rgba(212, 175, 55, 0.025);

  filter: blur(80px);

  pointer-events: none;
}


/* =====================================================
   CONTAINER
===================================================== */

.ded-process__container {

  position: relative;

  z-index: 2;

  max-width: 1400px;

  margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.ded-process__header {

  max-width: 760px;

  margin: 0 auto 100px;

  text-align: center;
}


.ded-process__eyebrow {

  display: inline-block;

  margin-bottom: 20px;

  color: var(--ded-gold);

  font-family: "Inter", sans-serif;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;
}


.ded-process__header h2 {

  margin: 0;

  color: var(--ded-ivory);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size:
    clamp(48px, 5vw, 76px);

  font-weight: 600;

  line-height: 0.95;

  letter-spacing: -1px;
}


.ded-process__header h2 span {

  display: block;

  color: var(--ded-gold);

  font-style: normal;
}


.ded-process__header p {

  max-width: 680px;

  margin: 28px auto 0;

  color: var(--ded-muted);

  font-family: "Inter", sans-serif;

  font-size: 15px;

  line-height: 1.8;
}


/* =====================================================
   JOURNEY
===================================================== */

.ded-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;

  min-height: 440px;
}


/* =====================================================
   CONNECTING LINE
===================================================== */

.ded-journey__line {

  position: absolute;

  top: 45px;

  left: 6%;

  right: 6%;

  height: 1px;

  background:
    rgba(212, 175, 55, 0.18);

  z-index: 0;
}


.ded-journey__progress {

  display: block;

  width: 14.28%;

  height: 100%;

  background:
    linear-gradient(90deg,
      transparent,
      var(--ded-gold));

  box-shadow:
    0 0 12px var(--ded-gold);

  transition:
    width 0.8s ease;
}


/* =====================================================
   STEP
===================================================== */

.ded-step {

  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  cursor: pointer;
}


/* =====================================================
   TRIGGER
===================================================== */

.ded-step__trigger {

  position: relative;

  width: 90px;

  height: 90px;

  padding: 0;

  border: 1px solid rgba(212, 175, 55, 0.22);

  border-radius: 50%;

  background:
    var(--ded-green-dark);

  color: var(--ded-gold);

  cursor: pointer;

  transition:

    transform 0.5s ease,

    border-color 0.5s ease,

    box-shadow 0.5s ease,

    background 0.5s ease;
}


.ded-step__number {

  position: absolute;

  top: -9px;

  right: -5px;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 30px;

  height: 30px;

  border-radius: 50%;

  background:
    var(--ded-green);

  border: 1px solid var(--ded-gold);

  color:
    var(--ded-gold);

  font-size: 9px;

  font-weight: 700;
}


.ded-step__icon {

  font-size: 27px;

  transition:

    transform 0.5s ease,

    filter 0.5s ease;
}


/* =====================================================
   ACTIVE STEP
===================================================== */

.ded-step.active .ded-step__trigger {

  border-color:
    var(--ded-gold);

  background:
    rgba(212, 175, 55, 0.08);

  transform:
    translateY(-8px);

  box-shadow:

    0 0 0 8px rgba(212, 175, 55, 0.04),

    0 0 30px rgba(212, 175, 55, 0.22);
}


.ded-step.active .ded-step__icon {

  transform:
    scale(1.12);

  filter:

    drop-shadow(0 0 10px var(--ded-gold));
}


.ded-step.active .ded-step__number {

  background:
    var(--ded-gold);

  color:
    var(--ded-green);
}


/* =====================================================
   CONTENT
===================================================== */

.ded-step__content {

  width: 100%;

  max-height: 0;

  margin-top: 30px;

  overflow: hidden;

  opacity: 0;

  transform:
    translateY(15px);

  transition:

    max-height 0.6s ease,

    opacity 0.5s ease,

    transform 0.5s ease;
}


.ded-step.active .ded-step__content {

  max-height: 280px;

  opacity: 1;

  transform:
    translateY(0);
}


.ded-step__label {

  display: block;

  margin-bottom: 12px;

  color:
    var(--ded-gold);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2px;
}


.ded-step__content h3 {

  margin: 0 0 14px;

  color:
    var(--ded-ivory);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 24px;

  line-height: 1.05;

  font-weight: 600;
}


.ded-step__content p {

  margin: 0;

  color:
    var(--ded-muted);

  font-size: 12px;

  line-height: 1.7;
}


/* =====================================================
   HOVER
===================================================== */

.ded-step:hover .ded-step__trigger {

  border-color:
    var(--ded-gold);

  box-shadow:

    0 0 25px rgba(212, 175, 55, 0.15);
}


.ded-step:hover .ded-step__icon {

  transform:
    scale(1.1);

  filter:
    drop-shadow(0 0 8px var(--ded-gold));
}


/* =====================================================
   FOOTER MESSAGE
===================================================== */

.ded-process__footer {

  display: flex;

  align-items: center;

  gap: 25px;

  margin-top: 80px;

  justify-content: center;
}


.ded-process__footer p {

  margin: 0;

  color:
    var(--ded-muted);

  font-size: 13px;

  text-align: center;

  letter-spacing: 0.5px;
}


.ded-process__footer strong {

  color:
    var(--ded-gold);
}


.ded-process__footer-line {

  width: 80px;

  height: 1px;

  background:
    rgba(212, 175, 55, 0.35);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

  .ded-process {

    padding:
      100px 4vw;
  }


  .ded-journey {

    grid-template-columns:
      repeat(4, 1fr);

    row-gap: 70px;
  }


  .ded-journey__line {

    display: none;
  }


  .ded-step__content {

    max-height: 240px;

    opacity: 1;

    transform: none;
  }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

  .ded-process {

    padding:
      85px 22px;
  }


  .ded-process__header {

    margin-bottom: 60px;
  }


  .ded-process__header h2 {

    font-size: 48px;

    line-height: 0.95;
  }


  .ded-process__header h2 span {

    display: inline;
  }


  .ded-process__header p {

    font-size: 14px;
  }


  .ded-journey {

    display: flex;

    flex-direction: column;

    gap: 0;

    min-height: auto;
  }


  /* Vertical line */

  .ded-journey::before {

    content: "";

    position: absolute;

    top: 50px;

    bottom: 50px;

    left: 52px;

    width: 1px;

    background:
      rgba(212, 175, 55, 0.2);
  }


  .ded-step {

    display: grid;

    grid-template-columns:
      105px 1fr;

    align-items: start;

    gap: 25px;

    margin-bottom: 35px;

    text-align: left;
  }


  .ded-step__trigger {

    z-index: 2;
  }


  .ded-step__content {

    max-height: none;

    margin-top: 12px;

    opacity: 1;

    transform: none;
  }


  .ded-step__content h3 {

    font-size: 25px;
  }


  .ded-step__content p {

    font-size: 13px;

    line-height: 1.7;
  }


  .ded-step__label {

    font-size: 8px;
  }


  .ded-process__footer {

    margin-top: 30px;
  }


  .ded-process__footer-line {

    display: none;
  }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

  .ded-step {

    grid-template-columns:
      78px 1fr;

    gap: 20px;
  }


  .ded-step__trigger {

    width: 78px;

    height: 78px;
  }


  .ded-step__icon {

    font-size: 21px;
  }


  .ded-step__number {

    width: 25px;

    height: 25px;

    font-size: 8px;
  }


  .ded-journey::before {

    left: 39px;
  }


  .ded-step__content h3 {

    font-size: 22px;
  }
}

/* =========================================
   FREE ZONE FINAL CTA SECTION
========================================= */

.fz-final-cta {
  position: relative;
  width: 100%;
  padding: 110px 7%;
  background: #004225;
  overflow: hidden;
  isolation: isolate;
}


/* Subtle Background Glow */

.fz-final-cta::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -250px;
  right: -180px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  filter: blur(10px);
  z-index: -1;
}


.fz-final-cta::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  bottom: -220px;
  left: -150px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.15);
  z-index: -1;
}


/* =========================================
   CONTAINER
========================================= */

.fz-cta-container {
  max-width: 1250px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;

  align-items: center;
}


/* =========================================
   LEFT CONTENT
========================================= */

.fz-cta-content {
  max-width: 650px;
}


.fz-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: #D4AF37;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 3px;

  margin-bottom: 25px;
}


/* Gold Line Before Eyebrow */

.fz-cta-eyebrow::before {
  content: "";

  width: 35px;
  height: 1px;

  background: #D4AF37;
}


/* =========================================
   HEADING
========================================= */

.fz-cta-content h2 {
  margin: 0 0 25px;

  color: #FFFFF0;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(44px, 5vw, 72px);

  font-weight: 500;

  line-height: 1.05;

  letter-spacing: -1.5px;
}


.fz-cta-content h2 span {
  color: #D4AF37;
  font-style: normal;
}


/* =========================================
   DESCRIPTION
========================================= */

.fz-cta-content p {
  max-width: 580px;

  margin: 0 0 35px;

  color: rgba(255, 255, 240, 0.78);

  font-family: "Inter", Arial, sans-serif;

  font-size: 16px;

  line-height: 1.8;
}


/* =========================================
   CTA BUTTONS
========================================= */

.fz-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}


.fz-btn {
  position: relative;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 18px;

  min-height: 56px;

  padding: 0 28px;

  border-radius: 999px;

  text-decoration: none;

  font-family: "Inter", Arial, sans-serif;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: 0.4px;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}


.fz-btn-arrow {
  font-size: 20px;

  transition: transform 0.3s ease;
}


.fz-btn:hover .fz-btn-arrow {
  transform: translateX(5px);
}


.fz-btn:hover {
  transform: translateY(-4px);
}


/* Gold Button */

.fz-btn-gold {
  background: #D4AF37;

  color: #004225;

  box-shadow:
    0 10px 30px rgba(212, 175, 55, 0.18);
}


.fz-btn-gold:hover {
  background: #FFFFF0;

  color: #004225;

  box-shadow:
    0 15px 40px rgba(212, 175, 55, 0.25);
}


/* Outline Button */

.fz-btn-outline {
  background: transparent;

  color: #FFFFF0;

  border: 1px solid rgba(255, 255, 240, 0.35);
}


.fz-btn-outline:hover {
  border-color: #D4AF37;

  color: #D4AF37;

  box-shadow:
    0 10px 30px rgba(212, 175, 55, 0.10);
}


/* =========================================
   CALCULATOR CARD
========================================= */

.fz-calculator-card {
  position: relative;

  padding: 40px;

  background:
    linear-gradient(145deg,
      rgba(255, 255, 240, 0.08),
      rgba(255, 255, 240, 0.025));

  border: 1px solid rgba(212, 175, 55, 0.35);

  border-radius: 4px;

  backdrop-filter: blur(12px);

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}


.fz-calculator-card:hover {
  transform: translateY(-8px);

  border-color: rgba(212, 175, 55, 0.75);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.22),
    0 0 35px rgba(212, 175, 55, 0.08);
}


/* =========================================
   CARD TOP
========================================= */

.fz-card-top {
  display: flex;

  align-items: flex-start;

  gap: 20px;
}


.fz-calculator-icon {
  flex-shrink: 0;

  width: 52px;
  height: 52px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(212, 175, 55, 0.5);

  color: #D4AF37;

  font-size: 22px;

  border-radius: 50%;
}


.fz-card-label {
  display: block;

  margin-bottom: 8px;

  color: #D4AF37;

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;
}


.fz-card-top h3 {
  margin: 0;

  color: #FFFFF0;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 32px;

  line-height: 1.1;

  font-weight: 500;
}


/* =========================================
   DIVIDER
========================================= */

.fz-calculator-divider {
  width: 100%;

  height: 1px;

  margin: 30px 0;

  background:
    linear-gradient(90deg,
      rgba(212, 175, 55, 0.5),
      rgba(255, 255, 240, 0.05));
}


/* =========================================
   CALCULATOR ITEMS
========================================= */

.fz-calculator-items {
  display: flex;

  flex-direction: column;

  gap: 22px;
}


.fz-calculator-item {
  display: flex;

  align-items: center;

  gap: 18px;
}


.fz-item-number {
  flex-shrink: 0;

  color: #D4AF37;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 1px;
}


.fz-calculator-item strong {
  display: block;

  margin-bottom: 4px;

  color: #FFFFF0;

  font-family: "Inter", Arial, sans-serif;

  font-size: 14px;

  font-weight: 600;
}


.fz-calculator-item small {
  color: rgba(255, 255, 240, 0.55);

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;
}


/* =========================================
   CALCULATOR BUTTON
========================================= */

.fz-calculator-btn {
  display: flex;

  align-items: center;

  justify-content: space-between;

  width: 100%;

  min-height: 55px;

  margin-top: 32px;

  padding: 0 20px;

  background: #FFFFF0;

  color: #004225;

  border: 1px solid #FFFFF0;

  text-decoration: none;

  font-family: "Inter", Arial, sans-serif;

  font-size: 13px;

  font-weight: 700;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}


.fz-calculator-btn span {
  font-size: 20px;

  transition: transform 0.3s ease;
}


.fz-calculator-btn:hover {
  background: #D4AF37;

  border-color: #D4AF37;

  color: #004225;
}


.fz-calculator-btn:hover span {
  transform: translate(4px, -4px);
}


/* =========================================
   RESPONSIVE TABLET
========================================= */

@media (max-width: 950px) {

  .fz-final-cta {
    padding: 80px 6%;
  }

  .fz-cta-container {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .fz-cta-content {
    max-width: 750px;
  }

  .fz-calculator-card {
    max-width: 650px;
  }

}


/* =========================================
   RESPONSIVE MOBILE
========================================= */

@media (max-width: 600px) {

  .fz-final-cta {
    padding: 70px 20px;
  }


  .fz-cta-content h2 {
    font-size: 43px;

    letter-spacing: -0.8px;
  }


  .fz-cta-content p {
    font-size: 15px;

    line-height: 1.7;
  }


  .fz-cta-actions {
    flex-direction: column;

    width: 100%;
  }


  .fz-btn {
    width: 100%;
  }


  .fz-calculator-card {
    padding: 28px 22px;
  }


  .fz-card-top {
    gap: 14px;
  }


  .fz-calculator-icon {
    width: 45px;
    height: 45px;

    font-size: 18px;
  }


  .fz-card-top h3 {
    font-size: 28px;
  }


  .fz-calculator-divider {
    margin: 25px 0;
  }

}

/* =========================================================
   BEXFORD — JURISDICTION SECTION
   British Racing Green / Ivory / Luxury Gold
========================================================= */

.bexford-jurisdictions {

  --bexford-green: #004225;
  --bexford-ivory: #FFFFF0;
  --bexford-gold: #D4AF37;

  position: relative;

  width: 100%;

  padding: 120px 6%;

  overflow: hidden;

  background: var(--bexford-green);

  color: var(--bexford-ivory);

  isolation: isolate;

}


/* =========================================================
   BACKGROUND
========================================================= */

.jurisdiction-grid {

  position: absolute;

  inset: 0;

  z-index: -3;

  opacity: 0.35;

  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;

}


.jurisdiction-glow {

  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  z-index: -2;

  filter: blur(10px);

}


.jurisdiction-glow-one {

  width: 600px;

  height: 600px;

  top: -350px;

  right: -250px;

  background:
    radial-gradient(circle,
      rgba(212, 175, 55, 0.10),
      transparent 70%);

}


.jurisdiction-glow-two {

  width: 500px;

  height: 500px;

  bottom: -300px;

  left: -250px;

  background:
    radial-gradient(circle,
      rgba(255, 255, 240, 0.035),
      transparent 70%);

}


/* =========================================================
   CONTAINER
========================================================= */

.jurisdiction-container {

  max-width: 1250px;

  margin: 0 auto;

}


/* =========================================================
   HEADER
========================================================= */

.jurisdiction-header {

  max-width: 800px;

  margin: 0 auto 65px;

  text-align: center;

}


.jurisdiction-eyebrow {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 15px;

  margin-bottom: 25px;

  color: var(--bexford-gold);

  font-family: "Inter", sans-serif;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 3px;

}


.jurisdiction-eyebrow span {

  width: 35px;

  height: 1px;

  background: var(--bexford-gold);

}


.jurisdiction-header h2 {

  margin: 0 0 25px;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: clamp(48px, 6vw, 78px);

  font-weight: 500;

  line-height: 0.98;

  letter-spacing: -1px;

}


.jurisdiction-header h2 span {

  display: block;

  color: var(--bexford-gold);




}


.jurisdiction-header p {

  margin: 0;

  color: rgba(255, 255, 240, 0.68);

  font-family: "Inter", sans-serif;

  font-size: 15px;

  line-height: 1.9;

}


/* =========================================================
   TABS
========================================================= */

.jurisdiction-tabs {

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 60px;

}


.jurisdiction-tab {

  position: relative;

  padding: 13px 19px;

  border: 1px solid rgba(255, 255, 240, 0.15);

  background: rgba(255, 255, 240, 0.025);

  color: rgba(255, 255, 240, 0.65);

  font-family: "Inter", sans-serif;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.5px;

  border-radius: 999px;

  cursor: pointer;

  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;

}


.jurisdiction-tab:hover {

  color: var(--bexford-ivory);

  border-color:
    rgba(212, 175, 55, 0.5);

  transform: translateY(-2px);

}


.jurisdiction-tab.active {

  color: var(--bexford-green);

  background: var(--bexford-gold);

  border-color: var(--bexford-gold);

}


/* =========================================================
   PANELS
========================================================= */

.jurisdiction-panel {

  display: none;

  animation:
    jurisdictionFade 0.5s ease forwards;

}


.jurisdiction-panel.active {

  display: block;

}


@keyframes jurisdictionFade {

  from {

    opacity: 0;

    transform: translateY(15px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}


/* =========================================================
   PANEL HEADING
========================================================= */

.jurisdiction-panel-heading {

  display: flex;

  align-items: center;

  gap: 22px;

  margin-bottom: 30px;

}


.panel-number {

  color: var(--bexford-gold);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 20px;

  font-style: normal;

}


.panel-kicker {

  display: block;

  margin-bottom: 5px;

  color: rgba(255, 255, 240, 0.42);

  font-family: "Inter", sans-serif;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2px;

}


.jurisdiction-panel-heading h3 {

  margin: 0;

  color: var(--bexford-ivory);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 42px;

  font-weight: 500;

  line-height: 1;

}


/* =========================================================
   CARD GRID
========================================================= */

.jurisdiction-cards {

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 15px;

}


/* =========================================================
   JURISDICTION CARD
========================================================= */

.jurisdiction-card {

  position: relative;

  display: flex;

  min-height: 260px;

  padding: 30px;

  overflow: hidden;

  background:

    linear-gradient(145deg,
      rgba(255, 255, 240, 0.07),
      rgba(255, 255, 240, 0.018));

  border: 1px solid rgba(255, 255, 240, 0.12);

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;
  border-radius: 20px;

}


.jurisdiction-card::before {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 3px;

  height: 0;

  background: var(--bexford-gold);

  transition:
    height 0.4s ease;

}


.jurisdiction-card:hover {

  transform: translateY(-7px);

  border-color:
    rgba(212, 175, 55, 0.4);

  background:

    linear-gradient(145deg,
      rgba(255, 255, 240, 0.09),
      rgba(255, 255, 240, 0.025));

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.14);

}


.jurisdiction-card:hover::before {

  height: 100%;

}


/* =========================================================
   CARD NUMBER
========================================================= */

.card-number {

  flex-shrink: 0;

  margin-right: 25px;

  color: rgba(212, 175, 55, 0.45);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 16px;

  font-style: normal;

}


/* =========================================================
   CARD CONTENT
========================================================= */

.card-content {

  padding-right: 25px;

}


.card-content h4 {

  margin: 0 0 13px;

  color: var(--bexford-ivory);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 27px;

  font-weight: 600;

  line-height: 1.15;

}


.card-content p {

  margin: 0;

  color: rgba(255, 255, 240, 0.58);

  font-family: "Inter", sans-serif;

  font-size: 12px;

  line-height: 1.8;

}


/* =========================================================
   CARD ARROW
========================================================= */

.card-arrow {

  position: absolute;

  right: 25px;

  bottom: 22px;

  color: var(--bexford-gold);

  font-size: 18px;

  opacity: 0.5;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;

}


.jurisdiction-card:hover .card-arrow {

  transform:
    translate(4px, -4px);

  opacity: 1;

}


/* =========================================================
   COSTS
========================================================= */

.costs-wrapper {

  border-top:
    1px solid rgba(255, 255, 240, 0.12);

}


.cost-item {

  display: grid;

  grid-template-columns:
    50px 1fr auto;

  align-items: center;

  gap: 25px;

  padding: 28px 10px;

  border-bottom:
    1px solid rgba(255, 255, 240, 0.1);

  transition:
    background 0.3s ease;

}


.cost-item:hover {

  background:
    rgba(255, 255, 240, 0.025);

}


.cost-index {

  color: var(--bexford-gold);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 18px;

  font-style: normal;

}


.cost-item h4 {

  margin: 0 0 5px;

  color: var(--bexford-ivory);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 24px;

  font-weight: 600;

}


.cost-item p {

  margin: 0;

  color: rgba(255, 255, 240, 0.45);

  font-family: "Inter", sans-serif;

  font-size: 11px;

}


.cost-item strong {

  color: var(--bexford-gold);

  font-family:
    "Inter", sans-serif;

  font-size: 22px;

  font-weight: 600;

  white-space: nowrap;

}


/* =========================================================
   COST NOTE
========================================================= */

.cost-note {

  display: flex;

  align-items: center;

  gap: 15px;

  margin-top: 25px;

  padding: 20px;

  border:
    1px solid rgba(212, 175, 55, 0.25);

  background:
    rgba(212, 175, 55, 0.035);

}


.cost-note-icon {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 30px;

  height: 30px;

  flex-shrink: 0;

  border:
    1px solid var(--bexford-gold);

  border-radius: 50%;

  color: var(--bexford-gold);

}


.cost-note p {

  margin: 0;

  color: rgba(255, 255, 240, 0.6);

  font-family: "Inter", sans-serif;

  font-size: 12px;

  line-height: 1.6;

}


/* =========================================================
   FINAL CTA
========================================================= */

.jurisdiction-cta {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;

  margin-top: 80px;

  padding: 45px;

  border-top:
    1px solid rgba(212, 175, 55, 0.4);

  border-bottom:
    1px solid rgba(212, 175, 55, 0.15);

}


.jurisdiction-cta>div>span {

  display: block;

  margin-bottom: 10px;

  color: var(--bexford-gold);

  font-family: "Inter", sans-serif;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2px;

}


.jurisdiction-cta h3 {

  margin: 0;

  color: var(--bexford-ivory);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 38px;

  font-weight: 500;

}


.jurisdiction-cta span {

  color: var(--bexford-gold);



}


.jurisdiction-cta a {

  display: inline-flex;

  align-items: center;

  gap: 25px;

  padding: 17px 24px;

  background: var(--bexford-gold);

  color: var(--bexford-green);

  text-decoration: none;

  font-family: "Inter", sans-serif;

  font-size: 11px;

  font-weight: 700;

  white-space: nowrap;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
  border-radius: 999px;

}


.jurisdiction-cta a:hover {

  transform: translateY(-4px);

  background: var(--bexford-ivory);

}


.jurisdiction-cta a span {

  font-size: 18px;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

  .bexford-jurisdictions {

    padding: 90px 5%;

  }


  .jurisdiction-cards {

    grid-template-columns: 1fr;

  }


  .jurisdiction-cta {

    flex-direction: column;

    align-items: flex-start;

  }

}


@media (max-width: 600px) {

  .bexford-jurisdictions {

    padding: 70px 20px;

  }


  .jurisdiction-header h2 {

    font-size: 48px;

  }


  .jurisdiction-header p {

    font-size: 13px;

  }


  .jurisdiction-tabs {

    justify-content: flex-start;

    overflow-x: auto;

    flex-wrap: nowrap;

    padding-bottom: 10px;

  }


  .jurisdiction-tab {

    flex-shrink: 0;

  }


  .jurisdiction-panel-heading h3 {

    font-size: 34px;

  }


  .jurisdiction-card {

    min-height: auto;

    padding: 25px;

  }


  .card-number {

    margin-right: 15px;

  }


  .card-content h4 {

    font-size: 24px;

  }


  .card-content p {

    font-size: 12px;

  }


  .cost-item {

    grid-template-columns:
      35px 1fr;

    gap: 15px;

  }


  .cost-item strong {

    grid-column: 2;

    font-size: 20px;

  }


  .jurisdiction-cta {

    padding: 30px 0;

    margin-top: 55px;

  }


  .jurisdiction-cta h3 {

    font-size: 32px;

  }


  .jurisdiction-cta a {

    width: 100%;

    justify-content: space-between;

  }

}