/* =========================================================
   Terms & Conditions Overview
   ========================================================= */

.terms-overview-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top right,
      rgba(13, 110, 253, 0.07),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.terms-overview-breadcrumb {
  margin-bottom: 48px;
}

.terms-overview-breadcrumb .breadcrumb {
  --bs-breadcrumb-divider: "›";
}

.terms-overview-breadcrumb .breadcrumb-item,
.terms-overview-breadcrumb .breadcrumb-item a {
  color: #526181;
  font-size: 16px;
  line-height: 1.3;
  text-decoration: none;
}

.terms-overview-breadcrumb .breadcrumb-item a:hover,
.terms-overview-breadcrumb .breadcrumb-item.active {
  color: #075be8;
}

.terms-overview-breadcrumb .breadcrumb-item:first-child a {
  color: #0d6efd;
}

.terms-overview-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  padding: 0 14px;
  color: #8390aa;
  font-size: 23px;
  line-height: 1;
}

.terms-overview-main {
  min-height: 560px;
}

.terms-overview-content {
  max-width: 560px;
  min-width: 0;
}

.terms-overview-kicker {
  margin-bottom: 24px;
  color: #075be8;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.terms-overview-kicker span {
  width: 53px;
  height: 3px;
  display: block;
  border-radius: 20px;
  background: #075be8;
}

.terms-overview-head h1 {
  margin: 0;
  color: #071333;
  font-size: 44px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.terms-overview-head h1 span {
  display: block;
  color: #0d6efd;
}

.terms-overview-description {
  max-width: 500px;
  margin: 28px 0 32px;
  color: #536181;
  font-size: 18px;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.terms-overview-updated {
  margin-bottom: 32px;
}

.terms-overview-updated-icon {
  width: 26px;
  min-width: 26px;
  color: #071333;
  font-size: 19px;
}

.terms-overview-updated p {
  min-width: 0;
  color: #071333;
  font-size: 16px;
  line-height: 1.4;
}

.terms-overview-updated strong {
  margin-right: 10px;
  font-weight: 800;
}

.terms-overview-updated span {
  color: #075be8;
  font-weight: 500;
}

.terms-overview-primary-btn,
.terms-overview-secondary-btn {
  min-width: 210px;
  min-height: 58px;
  padding: 13px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 9px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.terms-overview-primary-btn {
  color: #ffffff;
}

.terms-overview-primary-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.terms-overview-secondary-btn {
  border: 2px solid #071333;
  color: #071333;
  background: #ffffff;
}

.terms-overview-secondary-btn:hover {
  color: #ffffff;
  background: #071333;
  transform: translateY(-2px);
}

.terms-overview-primary-btn i,
.terms-overview-secondary-btn i {
  font-size: 22px;
}

/* Illustration */

.terms-overview-visual {
  width: 100%;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terms-overview-visual-glow {
  position: absolute;
  width: 92%;
  height: 88%;
  top: 4%;
  right: 1%;
  border-radius: 42% 58% 46% 54% / 42% 44% 56% 58%;
  background: radial-gradient(
    circle at center,
    rgba(13, 110, 253, 0.09),
    rgba(13, 110, 253, 0.025) 58%,
    transparent 72%
  );
  pointer-events: none;
}

.terms-overview-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.terms-overview-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 560px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* Legal Highlights */

.terms-overview-highlights {
  margin-top: 35px;
  overflow: hidden;
  border: 1px solid #d5e4f8;
  border-radius: 15px;
  background:
    radial-gradient(
      circle at top right,
      rgba(13, 110, 253, 0.045),
      transparent 30%
    ),
    linear-gradient(135deg, #fbfdff 0%, #ffffff 100%);
  box-shadow: 0 10px 28px rgba(17, 40, 80, 0.035);
}

.terms-overview-highlight {
  min-height: 148px;
  padding: 25px 32px;
  border-right: 1px solid #dce5f1;
}

.terms-overview-highlight-last {
  border-right: 0;
}

.terms-overview-highlight-icon {
  width: 78px;
  min-width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 31px;
}

.terms-overview-highlight-blue {
  color: #1764e8;
  border: 1px solid #c9ddff;
  background: #edf4ff;
}

.terms-overview-highlight-green {
  color: #239b58;
  border: 1px solid #cfe9da;
  background: #eef9f3;
}

.terms-overview-highlight-purple {
  color: #753fd1;
  border: 1px solid #ded0fa;
  background: #f4efff;
}

.terms-overview-highlight-orange {
  color: #ff6800;
  border: 1px solid #ffd9bd;
  background: #fff3e9;
}

.terms-overview-highlight-copy {
  min-width: 0;
}

.terms-overview-highlight h3 {
  margin: 0 0 9px;
  color: #071333;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
  overflow-wrap: break-word;
}

.terms-overview-highlight p {
  color: #536181;
  font-size: 16px;
  line-height: 1.5;
  overflow-wrap: break-word;
}

/* =========================================================
   Terms & Conditions Overview Responsive
   ========================================================= */

@media (max-width: 1599.98px) {
  .terms-overview-breadcrumb {
    margin-bottom: 42px;
  }

  .terms-overview-breadcrumb .breadcrumb-item,
  .terms-overview-breadcrumb .breadcrumb-item a {
    font-size: 15px;
  }

  .terms-overview-main {
    min-height: 515px;
  }

  .terms-overview-kicker {
    font-size: 15px;
  }

  .terms-overview-head h1 {
    font-size: 38px;
  }

  .terms-overview-description {
    margin: 24px 0 28px;
    font-size: 17px;
  }

  .terms-overview-updated {
    margin-bottom: 28px;
  }

  .terms-overview-primary-btn,
  .terms-overview-secondary-btn {
    min-width: 195px;
    min-height: 54px;
    padding: 12px 22px;
    font-size: 15px;
  }

  .terms-overview-visual {
    min-height: 500px;
  }

  .terms-overview-image {
    max-width: 680px;
  }

  .terms-overview-image img {
    max-height: 510px;
  }

  .terms-overview-highlights {
    margin-top: 30px;
  }

  .terms-overview-highlight {
    min-height: 138px;
    padding: 22px 26px;
  }

  .terms-overview-highlight-icon {
    width: 70px;
    min-width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .terms-overview-highlight h3 {
    font-size: 20px;
  }

  .terms-overview-highlight p {
    font-size: 15px;
  }
}

@media (max-width: 1600px) {
  .terms-overview-breadcrumb {
    margin-bottom: 35px;
  }

  .terms-overview-kicker {
    margin-top: 20px;
  }

  .terms-overview-breadcrumb .breadcrumb-item,
  .terms-overview-breadcrumb .breadcrumb-item a {
    font-size: 14px;
  }

  .terms-overview-main {
    min-height: 470px;
  }

  .terms-overview-kicker {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .terms-overview-kicker span {
    width: 45px;
  }

  .terms-overview-head h1 {
    font-size: 32px;
  }

  .terms-overview-description {
    max-width: 450px;
    font-size: 15px;
  }

  .terms-overview-updated p {
    font-size: 14px;
  }

  .terms-overview-primary-btn,
  .terms-overview-secondary-btn {
    min-width: 175px;
    min-height: 50px;
    padding: 11px 19px;
    font-size: 14px;
  }

  .terms-overview-primary-btn i,
  .terms-overview-secondary-btn i {
    font-size: 19px;
  }

  .terms-overview-visual {
    min-height: 450px;
  }

  .terms-overview-image {
    max-width: 600px;
  }

  .terms-overview-image img {
    max-height: 455px;
  }

  .terms-overview-highlight {
    padding: 20px;
  }

  .terms-overview-highlight-icon {
    width: 62px;
    min-width: 62px;
    height: 62px;
    font-size: 25px;
  }

  .terms-overview-highlight h3 {
    font-size: 17px;
  }

  .terms-overview-highlight p {
    font-size: 14px;
  }
}

@media (max-width: 991.98px) {
  .terms-overview-breadcrumb {
    margin-bottom: 32px;
  }
  .terms-ownership-img img {
    width: 500px !important;
  }
  .terms-ownership-img {
    display: flex;
    justify-content: center;
  }

  .terms-overview-main {
    min-height: auto;
  }

  .terms-overview-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .terms-overview-kicker,
  .terms-overview-actions,
  .terms-overview-updated {
    justify-content: center;
  }

  .terms-overview-description {
    margin-left: auto;
    margin-right: auto;
  }

  .terms-overview-visual {
    min-height: auto;
    margin-top: 10px;
  }

  .terms-overview-image {
    max-width: 620px;
  }

  .terms-overview-image img {
    max-height: 480px;
  }

  .terms-overview-highlights {
    margin-top: 20px;
  }

  .terms-overview-highlight {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid #dce5f1;
  }

  .terms-overview-highlights
    .row
    > div:nth-child(odd)
    .terms-overview-highlight {
    border-right: 1px solid #dce5f1;
  }

  .terms-overview-highlights
    .row
    > div:nth-last-child(-n + 2)
    .terms-overview-highlight {
    border-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .terms-overview-breadcrumb {
    margin-bottom: 28px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .terms-overview-breadcrumb::-webkit-scrollbar {
    display: none;
  }

  .terms-overview-breadcrumb .breadcrumb {
    flex-wrap: nowrap;
    min-width: max-content;
  }

  .terms-overview-kicker {
    gap: 9px !important;
    font-size: 13px;
  }

  .terms-overview-kicker span {
    width: 34px;
  }

  .terms-overview-head h1 {
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }

  .terms-overview-description {
    margin: 19px auto 24px;
    font-size: 15px;
    line-height: 1.6;
  }

  .terms-overview-updated {
    margin-bottom: 24px;
  }

  .terms-overview-updated p {
    font-size: 14px;
  }

  .terms-overview-actions {
    gap: 12px !important;
  }

  .terms-overview-primary-btn,
  .terms-overview-secondary-btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 12px 16px;
    white-space: normal;
    overflow-wrap: break-word;
    font-size: 14px;
  }

  .terms-overview-image {
    max-width: 500px;
  }

  .terms-overview-image img {
    max-height: 390px;
  }

  .terms-overview-highlight {
    min-height: auto;
    padding: 20px 18px;
  }

  .terms-overview-highlight-icon {
    width: 58px;
    min-width: 58px;
    height: 58px;
    font-size: 23px;
  }

  .terms-overview-highlight h3 {
    font-size: 18px;
  }

  .terms-overview-highlight p {
    font-size: 13px;
  }
  .ownership-ip-head p {
    font-size: 15px;
  }
}

@media (max-width: 575.98px) {
  .terms-overview-section {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .terms-overview-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 8px;
  }

  .terms-overview-kicker span {
    width: 26px;
  }

  .terms-overview-updated {
    gap: 8px !important;
  }

  .terms-overview-updated p strong,
  .terms-overview-updated p span {
    display: block;
  }

  .terms-overview-updated p strong {
    margin: 0 0 3px;
  }

  .terms-overview-image {
    max-width: 360px;
  }

  .terms-overview-image img {
    max-height: 320px;
  }

  .terms-overview-highlights .row > div .terms-overview-highlight {
    border-right: 0;
    border-bottom: 1px solid #dce5f1;
  }

  .terms-overview-highlights .row > div:last-child .terms-overview-highlight {
    border-bottom: 0;
  }

  .terms-overview-highlight {
    align-items: flex-start !important;
  }

  .terms-overview-highlight-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;
    font-size: 21px;
  }

  .terms-overview-highlight h3 {
    font-size: 16px;
  }
}
/* =========================================================
   Ownership, Content & Intellectual Property
   ========================================================= */

.ownership-ip-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(13, 110, 253, 0.045), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

.ownership-ip-head {
  max-width: 900px;
  margin-bottom: 30px;
}

.ownership-ip-kicker {
  margin-bottom: 12px;
  color: #075be8;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.ownership-ip-kicker span {
  width: 38px;
  height: 2px;
  display: block;
  border-radius: 20px;
  background: #075be8;
}

.ownership-ip-head h2 {
  margin: 0 0 13px;
  color: #071333;
  font-size: 44px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.ownership-ip-head h2 span {
  display: block;
  color: #0d6efd;
}

.ownership-ip-head > p {
  max-width: 710px;
  color: #536181;
  font-size: 18px;
  line-height: 1.55;
}

/* Ownership Diagram */

.ownership-ip-diagram {
  padding: 0 10px 25px;
}

.ownership-ip-side {
  position: relative;
  z-index: 3;
}

.ownership-ip-card {
  --ownership-color: #075be8;
  --ownership-soft: #edf4ff;
  --ownership-border: #c9dcff;

  position: relative;
  z-index: 3;
  min-height: 175px;
  padding: 29px 27px;
  border: 1px solid #d7e2f1;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 28px rgba(17, 40, 80, 0.04);
}

.ownership-ip-card::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 58%;
  top: 21%;
  border-radius: 10px;
  background: var(--ownership-color);
}

.ownership-ip-side .ownership-ip-card::before {
  left: -2px;
}

.ownership-ip-card-blue {
  --ownership-color: #075be8;
  --ownership-soft: #edf4ff;
  --ownership-border: #c9dcff;
}

.ownership-ip-card-teal {
  --ownership-color: #0ca395;
  --ownership-soft: #ecf9f7;
  --ownership-border: #c9e9e4;
}

.ownership-ip-card-orange {
  --ownership-color: #ff6800;
  --ownership-soft: #fff3ea;
  --ownership-border: #ffdbc1;
}

.ownership-ip-card-purple {
  --ownership-color: #8439de;
  --ownership-soft: #f5efff;
  --ownership-border: #dfd2f8;
}

.ownership-ip-card-pink {
  --ownership-color: #f63d8c;
  --ownership-soft: #fff0f6;
  --ownership-border: #f9cfe1;
}

.ownership-ip-card-icon {
  width: 88px;
  min-width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ownership-border);
  border-radius: 50%;
  color: var(--ownership-color);
  background: var(--ownership-soft);
  font-size: 35px;
}

.ownership-ip-card-copy {
  min-width: 0;
}

.ownership-ip-card h3 {
  margin: 0 0 9px;
  color: #071333;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
  overflow-wrap: break-word;
}

.ownership-ip-card p {
  color: #34405c;
  font-size: 16px;
  line-height: 1.55;
  overflow-wrap: break-word;
}

/* Center Shield */

.ownership-ip-center {
  width: 100%;
  max-width: 430px;
  aspect-ratio: 1 / 1;
}

.ownership-ip-orbit {
  position: absolute;
  inset: 0;
  border: 1.5px solid #5c96ff;
  border-radius: 50%;
}

.ownership-ip-orbit::before {
  content: "";
  position: absolute;
  inset: 58px;
  border: 1px dashed #d8e5fa;
  border-radius: 50%;
}

.ownership-ip-center-inner {
  position: absolute;
  width: 66%;
  height: 66%;
  top: 17%;
  left: 17%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(13, 110, 253, 0.11) 0%,
    rgba(13, 110, 253, 0.04) 55%,
    transparent 72%
  );
}

.ownership-ip-center-inner img {
  width: 78%;
  max-width: 280px;
  height: auto;
  max-height: 300px;
  display: block;
  object-fit: contain;
}

.ownership-ip-node {
  position: absolute;
  z-index: 4;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: #ffffff;
}

.ownership-ip-node::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.ownership-ip-node-blue {
  top: 14%;
  left: 6%;
  color: #075be8;
}

.ownership-ip-node-teal {
  top: 14%;
  right: 6%;
  color: #0ca395;
}

.ownership-ip-node-orange {
  top: 60%;
  left: -2%;
  color: #ff6800;
}

.ownership-ip-node-purple {
  top: 60%;
  right: -2%;
  color: #8439de;
}

.ownership-ip-node-pink {
  left: 50%;
  bottom: -4%;
  color: #f63d8c;
  transform: translateX(-50%);
}

/* Permitted Usage */

.ownership-ip-permitted-wrap {
  position: relative;
  z-index: 4;
  margin-top: -13px;
}

.ownership-ip-permitted {
  width: 100%;
  max-width: 500px;
  min-height: 145px;
  padding: 23px 27px;
}

.ownership-ip-permitted::before {
  width: 54%;
  height: 4px;
  top: auto;
  left: 23%;
  bottom: -2px;
}

.ownership-ip-permitted .ownership-ip-card-icon {
  width: 82px;
  min-width: 82px;
  height: 82px;
  font-size: 32px;
}

/* IP Commitment */

.ownership-ip-commitment {
  margin-top: 12px;
  padding: 17px 25px;
  border: 1px solid #d4e3f8;
  border-radius: 15px;
  background:
    radial-gradient(
      circle at top right,
      rgba(13, 110, 253, 0.045),
      transparent 30%
    ),
    linear-gradient(135deg, #fbfdff 0%, #ffffff 100%);
  box-shadow: 0 10px 28px rgba(17, 40, 80, 0.035);
}

.ownership-ip-commitment-main {
  min-height: 95px;
}

.ownership-ip-commitment-icon {
  width: 80px;
  min-width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c8dcff;
  border-radius: 50%;
  color: #075be8;
  background: #edf4ff;
  font-size: 32px;
}

.ownership-ip-commitment-copy {
  min-width: 0;
  padding-left: 8px;
  border-left: 1px solid #a9c7f7;
}

.ownership-ip-commitment-copy h3 {
  margin: 0 0 7px;
  color: #071333;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
}

.ownership-ip-commitment-copy p {
  max-width: 650px;
  color: #34405c;
  font-size: 16px;
  line-height: 1.55;
}

.ownership-ip-books img {
  width: 100%;
  max-width: 145px;
  height: auto;
  max-height: 95px;
  object-fit: contain;
}

.ownership-ip-policy-btn {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  padding: 13px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1.5px solid #075be8;
  border-radius: 9px;
  color: #075be8;
  background: #ffffff;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.ownership-ip-policy-btn:hover {
  color: #ffffff;
  background: #075be8;
  transform: translateY(-2px);
}

/* =========================================================
   Ownership, Content & Intellectual Property Responsive
   ========================================================= */

@media (max-width: 1599.98px) {
  .ownership-ip-head {
    margin-bottom: 27px;
  }

  .ownership-ip-kicker {
    font-size: 15px;
  }

  .ownership-ip-head h2 {
    font-size: 38px;
  }

  .ownership-ip-head > p {
    font-size: 17px;
  }

  .ownership-ip-card {
    min-height: 165px;
    padding: 25px 23px;
  }

  .ownership-ip-card-icon {
    width: 78px;
    min-width: 78px;
    height: 78px;
    font-size: 31px;
  }

  .ownership-ip-card h3 {
    font-size: 20px;
  }

  .ownership-ip-card p {
    font-size: 15px;
  }

  .ownership-ip-center {
    max-width: 395px;
  }

  .ownership-ip-center-inner img {
    max-width: 250px;
  }

  .ownership-ip-permitted {
    max-width: 470px;
  }

  .ownership-ip-commitment-copy h3 {
    font-size: 20px;
  }

  .ownership-ip-commitment-copy p {
    font-size: 15px;
  }

  .ownership-ip-policy-btn {
    min-height: 54px;
    padding: 12px 20px;
    font-size: 15px;
  }
}

@media (max-width: 1600px) {
  .ownership-ip-kicker {
    font-size: 14px;
  }

  .ownership-ip-head h2 {
    font-size: 32px;
  }

  .ownership-ip-head > p {
    font-size: 15px;
  }

  .ownership-ip-diagram {
    padding-left: 0;
    padding-right: 0;
  }

  .ownership-ip-card {
    min-height: 155px;
    padding: 22px 20px;
  }

  .ownership-ip-card-icon {
    width: 68px;
    min-width: 68px;
    height: 68px;
    font-size: 27px;
  }

  .ownership-ip-card h3 {
    font-size: 17px;
  }

  .ownership-ip-card p {
    font-size: 14px;
  }

  .ownership-ip-center {
    max-width: 350px;
  }

  .ownership-ip-center-inner img {
    max-width: 220px;
  }

  .ownership-ip-node {
    width: 30px;
    height: 30px;
  }

  .ownership-ip-node::after {
    width: 12px;
    height: 12px;
  }

  .ownership-ip-permitted {
    max-width: 440px;
    min-height: 135px;
  }

  .ownership-ip-permitted .ownership-ip-card-icon {
    width: 70px;
    min-width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .ownership-ip-commitment {
    padding: 15px 20px;
  }

  .ownership-ip-commitment-icon {
    width: 68px;
    min-width: 68px;
    height: 68px;
    font-size: 27px;
  }

  .ownership-ip-commitment-copy h3 {
    font-size: 17px;
  }

  .ownership-ip-commitment-copy p {
    font-size: 14px;
  }

  .ownership-ip-policy-btn {
    min-height: 50px;
    padding: 11px 17px;
    font-size: 14px;
  }
}

@media (max-width: 991.98px) {
  .ownership-ip-diagram > .row {
    --bs-gutter-y: 24px;
  }

  .ownership-ip-side {
    gap: 24px !important;
  }

  .ownership-ip-center {
    max-width: 390px;
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .ownership-ip-card {
    min-height: auto;
  }

  .ownership-ip-side .ownership-ip-card::before {
    width: 4px;
    height: 58%;
  }

  .ownership-ip-permitted-wrap {
    margin-top: 24px;
  }

  .ownership-ip-permitted {
    max-width: 100%;
  }

  .ownership-ip-permitted::before {
    width: 35%;
    left: 32.5%;
  }

  .ownership-ip-commitment {
    margin-top: 25px;
    padding: 20px;
  }

  .ownership-ip-books {
    padding: 8px 0;
  }

  .ownership-ip-books img {
    max-width: 130px;
  }

  .ownership-ip-action {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .ownership-ip-head {
    margin-bottom: 23px;
  }

  .ownership-ip-kicker {
    gap: 9px !important;
    font-size: 13px;
  }

  .ownership-ip-kicker span {
    width: 28px;
  }

  .ownership-ip-head h2 {
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }

  .ownership-ip-head > p {
    font-size: 16px;
    line-height: 1.55;
  }

  .ownership-ip-card {
    padding: 20px 18px;
  }

  .ownership-ip-card > .d-flex {
    align-items: flex-start !important;
  }

  .ownership-ip-card-icon {
    width: 58px;
    min-width: 58px;
    height: 58px;
    font-size: 23px;
  }

  .ownership-ip-card h3 {
    font-size: 18px;
  }

  .ownership-ip-card p {
    font-size: 14px;
  }

  .ownership-ip-center {
    max-width: 310px;
  }

  .ownership-ip-orbit::before {
    inset: 42px;
  }

  .ownership-ip-center-inner img {
    max-width: 190px;
  }

  .ownership-ip-node {
    width: 27px;
    height: 27px;
  }

  .ownership-ip-node::after {
    width: 10px;
    height: 10px;
  }

  .ownership-ip-permitted {
    padding: 20px 18px;
  }

  .ownership-ip-permitted .ownership-ip-card-icon {
    width: 58px;
    min-width: 58px;
    height: 58px;
    font-size: 23px;
  }

  .ownership-ip-commitment-main {
    align-items: flex-start !important;
    gap: 16px !important;
  }

  .ownership-ip-commitment-icon {
    width: 58px;
    min-width: 58px;
    height: 58px;
    font-size: 23px;
  }

  .ownership-ip-commitment-copy h3 {
    font-size: 18px;
  }

  .ownership-ip-commitment-copy p {
    font-size: 14px;
  }

  .ownership-ip-policy-btn {
    width: 100%;
    min-width: 0;
    padding: 12px 16px;
    white-space: normal;
    overflow-wrap: break-word;
    font-size: 14px;
  }
  .ownership-ip-card p {
    font-size: 13px;
  }
}

@media (max-width: 575.98px) {
  .ownership-ip-section {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .ownership-ip-kicker span {
    width: 20px;
  }

  .ownership-ip-card {
    padding: 18px 15px;
  }

  .ownership-ip-card > .d-flex,
  .ownership-ip-permitted > .d-flex {
    gap: 12px !important;
  }

  .ownership-ip-card-icon,
  .ownership-ip-permitted .ownership-ip-card-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .ownership-ip-card h3 {
    font-size: 16px;
  }

  /* .ownership-ip-card p {
    font-size: 14px;
  } */

  .ownership-ip-center {
    max-width: 260px;
  }

  .ownership-ip-orbit::before {
    inset: 35px;
  }

  .ownership-ip-center-inner img {
    max-width: 155px;
  }

  .ownership-ip-node {
    width: 24px;
    height: 24px;
  }

  .ownership-ip-node::after {
    width: 9px;
    height: 9px;
  }

  .ownership-ip-permitted-wrap {
    margin-top: 18px;
  }

  .ownership-ip-commitment {
    padding: 17px 15px;
  }

  .ownership-ip-commitment-main {
    flex-direction: column;
  }

  .ownership-ip-commitment-copy {
    padding: 0;
    border-left: 0;
  }

  .ownership-ip-commitment-copy h3 {
    font-size: 16px;
  }

  .ownership-ip-books img {
    max-width: 110px;
  }
}
/* =========================================================
   Full Terms & Conditions
   ========================================================= */

.full-terms-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(13, 110, 253, 0.045), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.full-terms-head {
  max-width: 820px;
  margin-bottom: 22px;
}

.full-terms-kicker {
  margin-bottom: 10px;
  color: #075be8;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.full-terms-kicker span {
  width: 38px;
  height: 2px;
  display: block;
  border-radius: 20px;
  background: #075be8;
}

.full-terms-head h2 {
  margin: 0 0 9px;
  color: #071333;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.full-terms-head h2 span {
  color: #0d6efd;
}

.full-terms-head > p {
  max-width: 700px;
  color: #536181;
  font-size: 18px;
  line-height: 1.5;
}

.full-terms-layout {
  align-items: stretch;
}

/* Contents */

.full-terms-contents {
  padding: 16px 12px;
  border: 1px solid #d9e4f2;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(17, 40, 80, 0.035);
}

.full-terms-contents-title {
  margin-bottom: 10px;
  color: #075be8;
  font-size: 14px;
  line-height: 1.3;
  text-transform: uppercase;
}

.full-terms-contents-title strong {
  display: block;
}

.full-terms-contents-title span {
  width: 26px;
  height: 2px;
  display: block;
  margin: 8px auto 0;
  background: #075be8;
}

.full-terms-nav-item {
  min-width: 0;
  min-height: 36px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-left: 3px solid transparent;
  border-radius: 0 6px 6px 0;
  color: #071333;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.full-terms-nav-item i {
  width: 18px;
  flex-shrink: 0;
  color: #657394;
  text-align: center;
  font-size: 14px;
}

.full-terms-nav-number {
  width: 22px;
  flex-shrink: 0;
  text-align: center;
  font-weight: 700;
}

.full-terms-nav-item > span:last-child {
  min-width: 0;
  overflow-wrap: break-word;
}

.full-terms-nav-item:hover,
.full-terms-nav-item.active {
  color: #075be8;
  border-left-color: #075be8;
  background: #edf4ff;
}

.full-terms-nav-item.active i,
.full-terms-nav-item:hover i {
  color: #075be8;
}

.full-terms-download {
  margin: 14px 7px 0;
  padding-top: 14px;
  border-top: 1px solid #dfe6ef;
}

.full-terms-download-link {
  min-width: 0;
  padding: 13px;
  border: 1px solid #cfe0fa;
  border-radius: 8px;
  color: #075be8;
  background: #f5f9ff;
  text-decoration: none;
}

.full-terms-download-link > i {
  font-size: 20px;
}

.full-terms-download-link > span {
  min-width: 0;
}

.full-terms-download-link strong,
.full-terms-download-link small {
  display: block;
}

.full-terms-download-link strong {
  margin-bottom: 4px;
  font-size: 12px;
  line-height: 1.35;
  overflow-wrap: break-word;
}

.full-terms-download-link small {
  color: #536181;
  font-size: 10px;
  line-height: 1.4;
}

/* Accordion */

.full-terms-accordion {
  overflow: hidden;
  border: 1px solid #d9e4f2;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(17, 40, 80, 0.035);
}

.full-terms-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid #dfe6ef;
  border-radius: 0;
}

.full-terms-accordion .accordion-item:last-child {
  border-bottom: 0;
}

.full-terms-accordion .accordion-button {
  min-height: 50px;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #071333;
  background: #ffffff;
  box-shadow: none;
}

.full-terms-accordion .accordion-button:not(.collapsed) {
  color: #071333;
  background: #f8fbff;
  box-shadow: none;
}

.full-terms-accordion .accordion-button:focus {
  border: 0;
  box-shadow: none;
}

.full-terms-accordion .accordion-button::after {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-left: auto;
  flex-shrink: 0;
  background-image: none;
  content: "+";
  color: #075be8;
  font-size: 24px;
  line-height: 16px;
  font-weight: 400;
  text-align: center;
  transform: none;
}

.full-terms-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
}

.full-terms-item-number {
  width: 39px;
  min-width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #071333;
  background: #f1f5fb;
  font-size: 13px;
  font-weight: 800;
}

.full-terms-item-title {
  width: 180px;
  min-width: 180px;
  padding-right: 13px;
  border-right: 1px solid #dbe4f0;
  color: #071333;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
  overflow-wrap: break-word;
}

.full-terms-item-preview {
  min-width: 0;
  flex: 1;
  color: #34405c;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
  overflow-wrap: break-word;
}

.full-terms-accordion .accordion-body {
  padding: 12px 32px 17px 72px;
  color: #536181;
  background: #fbfdff;
  font-size: 14px;
  line-height: 1.6;
}

/* Contact */

.full-terms-contact {
  padding: 27px 22px 22px;
  border: 1px solid #d7e4f7;
  border-radius: 14px;
  background:
    radial-gradient(
      circle at top right,
      rgba(13, 110, 253, 0.08),
      transparent 28%
    ),
    linear-gradient(135deg, #fbfdff 0%, #ffffff 100%);
  box-shadow: 0 8px 24px rgba(17, 40, 80, 0.035);
}

.full-terms-contact-dots {
  position: absolute;
  width: 95px;
  height: 70px;
  top: 8px;
  right: 7px;
  opacity: 0.4;
  background-image: radial-gradient(#8fb9ff 2px, transparent 2px);
  background-size: 16px 16px;
}

.full-terms-question-icon {
  position: relative;
  z-index: 2;
  width: 82px;
  min-width: 82px;
  height: 82px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% 50% 50% 18%;
  color: #ffffff;
  background: linear-gradient(135deg, #075be8, #3085ff);
  box-shadow: 0 12px 28px rgba(13, 110, 253, 0.22);
  font-size: 39px;
}

.full-terms-contact h3 {
  margin: 0 0 11px;
  color: #071333;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.full-terms-contact-intro {
  margin: 0;
  color: #34405c;
  font-size: 14px;
  line-height: 1.55;
}

.full-terms-contact-divider {
  margin: 16px 0;
  border-top: 1px solid #cbd9eb;
}

.full-terms-contact-item {
  margin-bottom: 14px;
}

.full-terms-contact-item:last-child {
  margin-bottom: 0;
}

.full-terms-contact-icon {
  width: 46px;
  min-width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c8dcff;
  border-radius: 50%;
  color: #075be8;
  background: #ffffff;
  font-size: 18px;
}

.full-terms-contact-item > div:last-child {
  min-width: 0;
}

.full-terms-contact-item h4 {
  margin: 2px 0 3px;
  color: #075be8;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.full-terms-contact-item p {
  margin: 0;
  color: #071333;
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: break-word;
}

.full-terms-contact-actions {
  margin-top: 17px;
}

.full-terms-contact-btn,
.full-terms-meeting-btn {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none;
}

.full-terms-contact-btn {
  justify-content: space-between;
  color: #ffffff;
}

.full-terms-contact-btn:hover {
  color: #ffffff;
}

.full-terms-meeting-btn {
  margin-top: 8px;
  border: 1px solid #075be8;
  color: #075be8;
  background: #ffffff;
}

.full-terms-meeting-btn:hover {
  color: #ffffff;
  background: #075be8;
}

/* Trust Bar */

.full-terms-trust {
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid #153c78;
  border-radius: 12px;
  color: #ffffff;
  background:
    radial-gradient(
      circle at top right,
      rgba(0, 91, 255, 0.22),
      transparent 27%
    ),
    linear-gradient(135deg, #020b25 0%, #061d49 50%, #020b25 100%);
  box-shadow: 0 15px 34px rgba(3, 17, 47, 0.11);
}

.full-terms-trust-main {
  min-height: 124px;
  padding: 18px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.full-terms-trust-main-icon {
  width: 78px;
  min-width: 78px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 92% 18%, 86% 72%, 50% 100%, 14% 72%, 8% 18%);
  color: #ffffff;
  background: linear-gradient(135deg, #3987ff, #075be8);
  font-size: 30px;
  box-shadow: 0 10px 28px rgba(0, 91, 255, 0.3);
}

.full-terms-trust-main-copy {
  min-width: 0;
}

.full-terms-trust-main h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
}

.full-terms-trust-main p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.5;
}

.full-terms-trust-stat {
  min-height: 124px;
  padding: 17px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.full-terms-trust-stat-last {
  border-right: 0;
}

.full-terms-trust-stat-icon {
  width: 56px;
  min-width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #8eb7ff;
  background: linear-gradient(135deg, #174aa8, #075be8);
  font-size: 23px;
}

.full-terms-trust-stat > div:last-child {
  min-width: 0;
}

.full-terms-trust-stat strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
}

.full-terms-trust-stat p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.45;
}

/* =========================================================
   Full Terms & Conditions Responsive
   ========================================================= */

@media (max-width: 1599.98px) {
  .full-terms-head {
    margin-bottom: 20px;
  }

  .full-terms-kicker {
    font-size: 15px;
  }

  .full-terms-head h2 {
    font-size: 38px;
  }

  .full-terms-head > p {
    font-size: 17px;
  }

  .full-terms-item-title {
    width: 165px;
    min-width: 165px;
  }

  .full-terms-contact h3 {
    font-size: 22px;
  }

  .full-terms-question-icon {
    width: 74px;
    min-width: 74px;
    height: 74px;
    font-size: 34px;
  }

  .full-terms-trust-main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .full-terms-trust-stat {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 1600px) {
  .full-terms-kicker {
    font-size: 14px;
  }

  .full-terms-head h2 {
    font-size: 32px;
  }

  .full-terms-head > p {
    font-size: 15px;
  }

  .full-terms-contents {
    padding-left: 9px;
    padding-right: 9px;
  }

  .full-terms-nav-item {
    gap: 8px;
    padding-left: 7px;
    padding-right: 7px;
    font-size: 11px;
  }

  .full-terms-nav-item i {
    font-size: 13px;
  }

  .full-terms-accordion .accordion-button {
    gap: 12px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .full-terms-item-number {
    width: 35px;
    min-width: 35px;
    height: 35px;
    font-size: 12px;
  }

  .full-terms-item-title {
    width: 145px;
    min-width: 145px;
    font-size: 13px;
  }

  .full-terms-item-preview {
    font-size: 11px;
  }

  .full-terms-accordion .accordion-body {
    padding-left: 60px;
    font-size: 14px;
  }

  .full-terms-contact {
    padding: 23px 18px 18px;
  }

  .full-terms-question-icon {
    width: 64px;
    min-width: 64px;
    height: 64px;
    font-size: 29px;
  }

  .full-terms-contact h3 {
    font-size: 20px;
  }

  .full-terms-contact-intro {
    font-size: 13px;
  }

  .full-terms-contact-icon {
    width: 42px;
    min-width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .full-terms-contact-item h4 {
    font-size: 12px;
  }

  .full-terms-contact-item p {
    font-size: 11px;
  }

  .full-terms-trust-main h3 {
    font-size: 16px;
  }

  .full-terms-trust-main p {
    font-size: 12px;
  }

  .full-terms-trust-stat {
    gap: 10px !important;
  }

  .full-terms-trust-stat-icon {
    width: 49px;
    min-width: 49px;
    height: 49px;
    font-size: 20px;
  }

  .full-terms-trust-stat strong {
    font-size: 15px;
  }

  .full-terms-trust-stat p {
    font-size: 11px;
  }
}

@media (max-width: 991.98px) {
  .full-terms-contents {
    height: auto !important;
  }

  .full-terms-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .full-terms-nav-item {
    width: calc(50% - 3px);
    border: 1px solid #e0e7f1;
    border-left: 3px solid transparent;
    border-radius: 7px;
  }

  .full-terms-nav-item.active,
  .full-terms-nav-item:hover {
    border-left-color: #075be8;
  }

  .full-terms-download {
    max-width: 360px;
  }

  .full-terms-contact {
    height: auto !important;
  }

  .full-terms-contact-list {
    display: flex;
    flex-wrap: wrap;
  }

  .full-terms-contact-item {
    width: 50%;
    padding-right: 18px;
  }

  .full-terms-contact-actions {
    max-width: 500px;
  }

  .full-terms-trust-main {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .full-terms-trust-stat {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .full-terms-trust
    .row
    > .col-xl-8
    .row
    > .col:nth-child(2)
    .full-terms-trust-stat {
    border-right: 0;
  }
}

@media (max-width: 767.98px) {
  .full-terms-head {
    margin-bottom: 20px;
  }

  .full-terms-kicker {
    gap: 9px !important;
    font-size: 13px;
  }
  .full-terms-head p {
    font-size: 15px;
  }

  .full-terms-kicker span {
    width: 28px;
  }

  .full-terms-head h2 {
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }

  .full-terms-head > p {
    font-size: 16px;
  }

  .full-terms-nav-item {
    width: 100%;
    font-size: 13px;
  }

  .full-terms-download {
    max-width: none;
  }

  .full-terms-accordion .accordion-button {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 12px;
  }

  .full-terms-item-number {
    width: 38px;
    min-width: 38px;
    height: 38px;
  }

  .full-terms-item-title {
    width: calc(100% - 86px);
    min-width: 0;
    padding: 8px 0 0;
    border-right: 0;
    font-size: 16px;
  }

  .full-terms-item-preview {
    flex-basis: 100%;
    padding: 3px 34px 0 50px;
    font-size: 14px;
    line-height: 1.5;
  }

  .full-terms-accordion .accordion-button::after {
    position: absolute;
    top: 20px;
    right: 13px;
  }

  .full-terms-accordion .accordion-body {
    padding: 12px 18px 18px;
    font-size: 14px;
  }

  .full-terms-contact h3 {
    font-size: 18px;
  }

  .full-terms-contact-intro {
    font-size: 14px;
  }

  .full-terms-contact-item {
    width: 100%;
    padding-right: 0;
  }

  .full-terms-contact-item h4 {
    font-size: 14px;
  }

  .full-terms-contact-item p {
    font-size: 14px;
  }

  .full-terms-contact-btn,
  .full-terms-meeting-btn {
    min-height: 48px;
    padding: 12px 16px;
    white-space: normal;
    overflow-wrap: break-word;
    font-size: 14px;
  }

  .full-terms-trust-main {
    align-items: flex-start !important;
  }

  .full-terms-trust-main h3 {
    font-size: 18px;
  }

  .full-terms-trust-main p {
    font-size: 14px;
  }

  .full-terms-trust-stat {
    min-height: 125px;
    padding: 18px 12px;
  }

  .full-terms-trust-stat strong {
    font-size: 15px;
  }

  .full-terms-trust-stat p {
    font-size: 12px;
  }
}

@media (max-width: 575.98px) {
  .full-terms-section {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .full-terms-kicker span {
    width: 20px;
  }

  .full-terms-contents {
    padding: 12px 9px;
  }

  .full-terms-nav-item {
    font-size: 12px;
  }

  .full-terms-item-title {
    font-size: 15px;
  }

  .full-terms-item-preview {
    padding-left: 50px;
    padding-right: 20px;
    font-size: 13px;
  }

  .full-terms-contact {
    padding: 20px 15px;
  }

  .full-terms-question-icon {
    width: 58px;
    min-width: 58px;
    height: 58px;
    font-size: 26px;
  }

  .full-terms-contact h3 br {
    display: none;
  }

  .full-terms-contact-item p br {
    display: none;
  }

  .full-terms-trust-main {
    flex-direction: column;
    gap: 14px !important;
  }

  .full-terms-trust-main-icon {
    width: 64px;
    min-width: 64px;
    height: 72px;
    font-size: 25px;
  }

  .full-terms-trust-stat {
    flex-direction: column;
    align-items: flex-start !important;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .full-terms-trust
    .row
    > .col-xl-8
    .row
    > .col:nth-last-child(-n + 2)
    .full-terms-trust-stat {
    border-bottom: 0;
  }
}
