/* =========================================================
   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;
  }

}

/* ==========================================
   TRADEMARK SERVICES
   CONSULTATION CTA
========================================== */

.trademark-cta-section {
  position: relative;

  width: 100%;

  padding: 120px 6%;

  background: #004225;

  overflow: hidden;

  isolation: isolate;
}


/* ==========================================
   BACKGROUND DECORATION
========================================== */

.trademark-cta-section::before {
  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  top: -450px;
  right: -300px;

  border-radius: 50%;

  border: 1px solid rgba(212, 175, 55, 0.11);

  z-index: -1;
}


.trademark-cta-section::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  bottom: -350px;
  left: -250px;

  border-radius: 50%;

  background: rgba(212, 175, 55, 0.035);

  filter: blur(25px);

  z-index: -1;
}


/* ==========================================
   ORBIT ELEMENTS
========================================== */

.trademark-orbit {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  z-index: -1;
}


.trademark-orbit-one {
  width: 320px;
  height: 320px;

  top: 25%;
  left: -230px;

  border: 1px solid rgba(255, 255, 240, 0.05);

  animation:
    trademarkOrbitRotate 18s linear infinite;
}


.trademark-orbit-two {
  width: 210px;
  height: 210px;

  top: 34%;
  left: -170px;

  border: 1px solid rgba(212, 175, 55, 0.08);

  animation:
    trademarkOrbitReverse 13s linear infinite;
}


@keyframes trademarkOrbitRotate {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}


@keyframes trademarkOrbitReverse {

  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }

}


/* ==========================================
   MAIN CONTAINER
========================================== */

.trademark-cta-container {
  max-width: 1280px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 90px;

  align-items: center;
}


/* ==========================================
   LEFT CONTENT
========================================== */

.trademark-cta-content {
  max-width: 650px;
}


.trademark-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 25px;

  color: #D4AF37;

  font-family: "Inter", Arial, sans-serif;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 3px;
}


.trademark-eyebrow::before {
  content: "";

  width: 35px;

  height: 1px;

  background: #D4AF37;
}


/* ==========================================
   HEADING
========================================== */

.trademark-cta-content h2 {
  margin: 0 0 25px;

  color: #FFFFF0;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(48px, 5.5vw, 75px);

  font-weight: 500;

  line-height: 1.02;

  letter-spacing: -1.5px;
}


.trademark-cta-content h2 span {
  display: block;

  color: #D4AF37;

  font-style: normal;
}


/* ==========================================
   DESCRIPTION
========================================== */

.trademark-cta-content>p {
  max-width: 590px;

  margin: 0 0 35px;

  color: rgba(255, 255, 240, 0.7);

  font-family: "Inter", Arial, sans-serif;

  font-size: 15px;

  line-height: 1.85;
}


/* ==========================================
   MAIN CTA BUTTON
========================================== */

.trademark-main-button {
  display: inline-flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  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;
}


.trademark-main-button:hover {
  transform: translateY(-5px);

  background: #FFFFF0;

  color: #004225;

  border-color: #FFFFF0;

  box-shadow:
    0 18px 40px rgba(212, 175, 55, 0.2);
}


.trademark-button-arrow {
  font-size: 20px;

  transition:
    transform 0.3s ease;
}


.trademark-main-button:hover .trademark-button-arrow {
  transform: translateX(6px);
}


/* ==========================================
   TRUST NOTE
========================================== */

.trademark-trust-note {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-top: 20px;

  color: rgba(255, 255, 240, 0.48);

  font-family: "Inter", Arial, sans-serif;

  font-size: 11px;
}


.trademark-trust-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 18px;
  height: 18px;

  border: 1px solid rgba(212, 175, 55, 0.45);

  border-radius: 50%;

  color: #D4AF37;

  font-size: 10px;
}


/* ==========================================
   BRAND CHECK CARD
========================================== */

.trademark-check-card {
  position: relative;

  padding: 42px 40px;

  background:
    linear-gradient(145deg,
      rgba(255, 255, 240, 0.09),
      rgba(255, 255, 240, 0.025));

  border: 1px solid rgba(212, 175, 55, 0.38);

  border-radius: 25px;

  backdrop-filter: blur(10px);

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.16);

  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}


.trademark-check-card:hover {
  transform: translateY(-8px);

  border-color: rgba(212, 175, 55, 0.7);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.2),
    0 0 40px rgba(212, 175, 55, 0.07);
}


/* ==========================================
   GOLD ACCENT
========================================== */

.trademark-card-accent {
  position: absolute;

  top: 0;
  left: 35px;

  width: 60px;
  height: 3px;

  background: #D4AF37;
}


/* ==========================================
   CHECK HEADER
========================================== */

.trademark-check-header {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 25px;
}


.trademark-check-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 50px;
  height: 50px;

  border: 1px solid rgba(212, 175, 55, 0.5);

  border-radius: 50%;

  color: #D4AF37;
}


.trademark-check-icon svg {
  width: 22px;
  height: 22px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.5;

  stroke-linecap: round;
}


.trademark-check-label {
  color: #D4AF37;

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;
}


/* ==========================================
   CHECK CARD HEADING
========================================== */

.trademark-check-card h3 {
  margin: 0 0 18px;

  color: #FFFFF0;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 39px;

  font-weight: 500;

  line-height: 1.08;
}


/* ==========================================
   CHECK DESCRIPTION
========================================== */

.trademark-check-card>p {
  margin: 0 0 28px;

  color: rgba(255, 255, 240, 0.62);

  font-family: "Inter", Arial, sans-serif;

  font-size: 13px;

  line-height: 1.8;
}


/* ==========================================
   FORM
========================================== */

.trademark-check-form {
  display: flex;

  flex-direction: column;

  gap: 17px;
}


.trademark-input-row {
  display: grid;

  grid-template-columns: 1fr 0.65fr;

  gap: 12px;
}


.trademark-input-group {
  display: flex;

  flex-direction: column;

  gap: 8px;
}


.trademark-input-group label {
  color: rgba(255, 255, 240, 0.6);

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.5px;
}


.trademark-input-group input,
.trademark-input-group select {
  width: 100%;

  height: 48px;

  padding: 0 14px;

  background: rgba(255, 255, 240, 0.045);

  color: #FFFFF0;

  border: 1px solid rgba(255, 255, 240, 0.16);

  border-radius: 2px;

  outline: none;

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;

  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}


.trademark-input-group input::placeholder {
  color: rgba(255, 255, 240, 0.3);
}


.trademark-input-group select {
  cursor: pointer;
}


.trademark-input-group select option {
  background: #004225;

  color: #FFFFF0;
}


.trademark-input-group input:focus,
.trademark-input-group select:focus {
  background: rgba(255, 255, 240, 0.07);

  border-color: #D4AF37;

  box-shadow:
    0 0 0 3px rgba(212, 175, 55, 0.08);
}


/* ==========================================
   CHECK BUTTON
========================================== */

.trademark-check-button {
  display: flex;

  align-items: center;

  justify-content: space-between;

  width: 100%;

  height: 55px;

  margin-top: 5px;

  padding: 0 20px;

  background: #D4AF37;

  color: #004225;

  border: 1px solid #D4AF37;

  border-radius: 2px;

  cursor: pointer;

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;

  font-weight: 700;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}


.trademark-check-button:hover {
  transform: translateY(-3px);

  background: #FFFFF0;

  border-color: #FFFFF0;

  box-shadow:
    0 15px 35px rgba(212, 175, 55, 0.18);
}


.trademark-check-arrow {
  font-size: 19px;

  transition:
    transform 0.3s ease;
}


.trademark-check-button:hover .trademark-check-arrow {
  transform: translate(4px, -4px);
}


/* ==========================================
   DISCLAIMER
========================================== */

.trademark-disclaimer {
  display: block;

  margin-top: 15px;

  color: rgba(255, 255, 240, 0.35);

  font-family: "Inter", Arial, sans-serif;

  font-size: 9px;

  line-height: 1.6;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 950px) {

  .trademark-cta-section {
    padding: 90px 5%;
  }


  .trademark-cta-container {
    grid-template-columns: 1fr;

    gap: 60px;
  }


  .trademark-cta-content {
    max-width: 750px;
  }


  .trademark-check-card {
    max-width: 700px;

    width: 100%;
  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

  .trademark-cta-section {
    padding: 75px 20px;
  }


  .trademark-cta-content h2 {
    font-size: 46px;

    letter-spacing: -0.8px;
  }


  .trademark-cta-content>p {
    font-size: 14px;

    line-height: 1.75;
  }


  .trademark-main-button {
    width: 100%;

    padding: 0 20px;
  }


  .trademark-check-card {
    padding: 35px 25px;
  }


  .trademark-check-card h3 {
    font-size: 35px;
  }


  .trademark-input-row {
    grid-template-columns: 1fr;
  }


  .trademark-trust-note {
    align-items: flex-start;

    line-height: 1.5;
  }

}