/* =========================================================
   PAGE: CARNETS D'ANNONCES V2
   Based on public-v2 / investir-v2 rhythm
   ========================================================= */

/* =========================================================
   HERO
   ========================================================= */

.ca-v2-page {
  background: #ffffff;
}

.ca-v2-hero {
  position: relative;
  overflow: hidden;
}

.ca-v2-hero--dark {
  padding: 108px 0 92px;
  background-image:
    linear-gradient(
      90deg,
      rgba(4, 18, 45, 0.88) 0%,
      rgba(4, 18, 45, 0.76) 34%,
      rgba(4, 18, 45, 0.42) 58%,
      rgba(4, 18, 45, 0.14) 100%
    ),
    url('/img/carnets-annonces/carnets-hero-dark.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ca-v2-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1.4;
}

.ca-v2-breadcrumb--light,
.ca-v2-breadcrumb--light a {
  color: rgba(255, 255, 255, 0.72);
}

.ca-v2-breadcrumb a {
  text-decoration: none;
}

.ca-v2-breadcrumb a:hover {
  color: #1fc4d1;
}

.ca-v2-hero__content--dark {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
}

.ca-v2-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #1fc4d1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ca-v2-hero__title--dark {
  max-width: 680px;
  margin: 0;
  color: #ffffff;
  font-size: 50px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ca-v2-hero__lead--dark {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.90);
  font-size: 17px;
  line-height: 1.7;
}

.ca-v2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================================
   PROCESS
   ========================================================= */

.ca-v2-process {
  padding: 34px 0 46px;
  background: #f9fbfe;
}

.ca-v2-process__head {
  max-width: 820px;
  margin: 0 0 28px;
}

.ca-v2-process__title {
  max-width: 780px;
  margin: 0 0 10px;
  color: var(--color-heading);
  font-size: 34px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ca-v2-process__lead {
  max-width: 760px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.7;
}

.ca-v2-step-card {
  position: relative;
  min-height: 100%;
  padding: 24px 22px 22px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(16, 36, 73, 0.04);
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.ca-v2-step-card:hover {
  transform: translateY(-2px);
  border-color: #d4e1ec;
  box-shadow: 0 18px 34px rgba(16, 36, 73, 0.06);
}

.ca-v2-step-card__topline {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1fa6b3 0%, #204f84 100%);
}

.ca-v2-step-card__number {
  display: block;
  margin: 0 0 16px;
  color: #d1dbe7;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.ca-v2-step-card__title {
  margin: 0 0 10px;
  color: var(--color-heading);
  font-size: 21px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ca-v2-step-card__text {
  margin: 0;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.65;
}

/* =========================================================
   AUDIENCE CARDS
   ========================================================= */

.ca-v2-audiences {
  padding: 34px 0 30px;
  background: #ffffff;
}

.ca-v2-audience-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 100%;
  padding: 28px 26px;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.ca-v2-audience-card:hover {
  transform: translateY(-2px);
  border-color: #d4e1ec;
  box-shadow: 0 18px 34px rgba(16, 36, 73, 0.06);
}

.ca-v2-audience-card__icon {
  flex: 0 0 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #1a7f95;
  background: #ecf8f6;
  font-size: 26px;
}

.ca-v2-audience-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 100%;
}

.ca-v2-audience-card__title {
  margin: 0 0 16px;
  color: var(--color-heading);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ca-v2-audience-card__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ca-v2-audience-card__list li {
  position: relative;
  padding-left: 24px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.6;
}

.ca-v2-audience-card__list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid #1ea8b2;
  border-radius: 50%;
  background: #ffffff;
}

.ca-v2-audience-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.ca-v2-audience-card__link:hover {
  color: #0d8f9b;
}

.ca-v2-audience-card__link i {
  transition: transform 0.18s ease;
}

.ca-v2-audience-card__link:hover i {
  transform: translateX(3px);
}

/* =========================================================
   HUMAN / ACCOMPAGNEMENT
   ========================================================= */

.ca-v2-human {
  padding: 36px 0 48px;
  background: #ffffff;
}

.ca-v2-human__content {
  max-width: 620px;
}

.ca-v2-human__title {
  margin: 0 0 14px;
  color: var(--color-heading);
  font-size: 34px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ca-v2-human__lead {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.7;
}

.ca-v2-human__points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.ca-v2-human__points div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.6;
}

.ca-v2-human__points i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: #0d8f9b;
  font-size: 18px;
}

.ca-v2-human__figure {
  margin: 0;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(16, 36, 73, 0.06);
  overflow: hidden;
}

.ca-v2-human__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  object-fit: cover;
}

/* =========================================================
   ECOSYSTEME
   ========================================================= */

.ca-v2-ecosystem {
  padding: 36px 0 52px;
  background: #ffffff;
}

.ca-v2-ecosystem__head {
  display: grid;
  grid-template-columns: minmax(0, 820px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 28px;
}

.ca-v2-ecosystem__head-main {
  min-width: 0;
  max-width: 820px;
}

.ca-v2-ecosystem__title {
  margin: 0 0 10px;
  color: var(--color-heading);
  font-size: 34px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ca-v2-ecosystem__lead {
  max-width: 780px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.7;
}

.ca-v2-ecosystem__head-link {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  margin: 0 0 6px;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
}

.ca-v2-ecosystem__head-link:hover {
  color: #0d8f9b;
}

.ca-v2-ecosystem__diagram-card {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 34px rgba(16, 36, 73, 0.05);
  overflow: hidden;
}

.ca-v2-ecosystem__diagram-scroll {
  width: 100%;
  overflow-x: auto;
}

.ca-v2-ecosystem__diagram {
  display: block;
  width: 100%;
  min-width: 960px;
  height: auto;
  border: 0;
}

.ca-v2-ecosystem-card {
  min-height: 100%;
  padding: 24px 22px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.ca-v2-ecosystem-card:hover {
  transform: translateY(-2px);
  border-color: #d4e1ec;
  box-shadow: 0 18px 34px rgba(16, 36, 73, 0.06);
}

.ca-v2-ecosystem-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: #1c5c92;
  background: linear-gradient(135deg, #eff8f8 0%, #eef4fb 100%);
  font-size: 24px;
  box-shadow: inset 0 0 0 1px rgba(32, 79, 132, 0.06);
}

.ca-v2-ecosystem-card__title {
  margin: 0 0 10px;
  color: var(--color-heading);
  font-size: 21px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ca-v2-ecosystem-card__text {
  margin: 0;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.68;
}

/* =========================================================
   USE CASES
   ========================================================= */

.ca-v2-use-cases {
  padding: 34px 0 46px;
  background: #f9fbfe;
}

.ca-v2-use-case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 26px;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.ca-v2-use-case-card::before {
  content: "";
  position: absolute;
  top: -88px;
  right: -88px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(31, 196, 209, 0.10);
}

.ca-v2-use-case-card__eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 12px;
  color: #1fc4d1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ca-v2-use-case-card__title {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: var(--color-heading);
  font-size: 28px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ca-v2-use-case-card__text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.72;
}

.ca-v2-use-case-card__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.ca-v2-use-case-card__list li {
  position: relative;
  padding-left: 22px;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.55;
}

.ca-v2-use-case-card__list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid #1ea8b2;
  border-radius: 50%;
  background: #ffffff;
}

.ca-v2-use-case-card__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.ca-v2-use-case-card__link:hover {
  color: #0d8f9b;
}

/* =========================================================
   EXAMPLES
   Uses shared .home-carnets-section and .annonces-card
   from public-v2.css
   ========================================================= */

#exemples.home-carnets-section {
  padding: 30px 0 48px;
}

#exemples .home-section-head {
  margin-bottom: 28px;
}

/* =========================================================
   INFO PANELS
   ========================================================= */

.ca-v2-info {
  padding: 30px 0 42px;
  background: #f9fbfe;
}

.ca-v2-info-panel {
  min-height: 100%;
  padding: 28px 26px;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.ca-v2-info-panel__title {
  margin: 0 0 14px;
  color: var(--color-heading);
  font-size: 28px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ca-v2-info-panel__text {
  margin: 0;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.72;
}

.ca-v2-info-panel__list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.ca-v2-info-panel__list li {
  position: relative;
  padding-left: 22px;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.55;
}

.ca-v2-info-panel__list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid #234f84;
  border-radius: 50%;
  background: #d8e8f7;
}

/* =========================================================
   CTA
   ========================================================= */

.ca-v2-cta {
  padding: 28px 0 56px;
  background: #ffffff;
}

.ca-v2-cta__band {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 28px 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(38, 173, 197, 0.18), transparent 26%),
    linear-gradient(135deg, #0a2d67 0%, #123f86 52%, #123874 100%);
  box-shadow: 0 18px 40px rgba(11, 42, 95, 0.18);
  overflow: hidden;
}

.ca-v2-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  border-radius: 26px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  font-size: 42px;
}

.ca-v2-cta__title {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ca-v2-cta__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.65;
}

.ca-v2-cta__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.ca-v2-cta__actions .ui-btn {
  min-width: 180px;
  justify-content: center;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199px) {
  .ca-v2-ecosystem {
    padding: 30px 0 42px;
  }

  .ca-v2-ecosystem__head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ca-v2-ecosystem__head-link {
    justify-self: start;
    margin: 0;
  }

  .ca-v2-cta__band {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 22px;
  }

  .ca-v2-cta__actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-left: 110px;
  }

  .ca-v2-cta__icon {
    width: 88px;
    height: 88px;
    border-radius: 22px;
    font-size: 34px;
  }

  .ca-v2-cta__title {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .ca-v2-hero--dark {
    padding: 76px 0 68px;
    background-position: 68% center;
  }

  .ca-v2-hero__title--dark {
    max-width: 100%;
    font-size: 40px;
  }

  .ca-v2-hero__lead--dark {
    max-width: 100%;
    font-size: 18px;
  }

  .ca-v2-audiences {
    padding: 28px 0 24px;
  }

  .ca-v2-audience-card {
    padding: 24px 22px;
  }

  .ca-v2-audience-card__title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .ca-v2-hero--dark {
    padding: 52px 0 48px;
    background-position: 74% center;
    background-image:
      linear-gradient(
        180deg,
        rgba(4, 18, 45, 0.88) 0%,
        rgba(4, 18, 45, 0.78) 45%,
        rgba(4, 18, 45, 0.62) 100%
      ),
      url('/img/carnets-annonces/carnets-hero-dark.jpg');
  }

  .ca-v2-breadcrumb {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .ca-v2-hero__eyebrow {
    font-size: 12px;
  }

  .ca-v2-hero__title--dark {
    font-size: 34px;
  }

  .ca-v2-hero__lead--dark {
    font-size: 16px;
    line-height: 1.65;
  }

  .ca-v2-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ca-v2-hero__actions .ui-btn {
    width: 100%;
    justify-content: center;
  }

  .ca-v2-process {
    padding: 24px 0 32px;
  }

  .ca-v2-process__head {
    margin-bottom: 22px;
  }

  .ca-v2-process__title {
    font-size: 26px;
  }

  .ca-v2-process__lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .ca-v2-step-card {
    padding: 22px 18px 18px;
    border-radius: 18px;
  }

  .ca-v2-step-card__number {
    margin-bottom: 14px;
    font-size: 30px;
  }

  .ca-v2-step-card__title {
    font-size: 20px;
  }

  .ca-v2-step-card__text {
    font-size: 14px;
    line-height: 1.65;
  }

  .ca-v2-audiences {
    padding: 24px 0 20px;
  }

  .ca-v2-audience-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .ca-v2-audience-card__icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .ca-v2-audience-card__title {
    font-size: 22px;
  }

  .ca-v2-audience-card__list li,
  .ca-v2-audience-card__link {
    font-size: 14px;
  }

  .ca-v2-human {
    padding: 28px 0 36px;
  }

  .ca-v2-human__title {
    font-size: 26px;
  }

  .ca-v2-human__lead,
  .ca-v2-human__points div {
    font-size: 15px;
    line-height: 1.65;
  }

  .ca-v2-human__figure {
    padding: 8px;
    border-radius: 18px;
  }

  .ca-v2-human__image {
    border-radius: 14px;
  }

  .ca-v2-ecosystem {
    padding: 24px 0 34px;
  }

  .ca-v2-ecosystem__title {
    font-size: 26px;
  }

  .ca-v2-ecosystem__lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .ca-v2-ecosystem__diagram-card {
    padding: 10px;
    border-radius: 18px;
  }

  .ca-v2-ecosystem__diagram {
    min-width: 860px;
  }

  .ca-v2-ecosystem-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .ca-v2-ecosystem-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 22px;
  }

  .ca-v2-ecosystem-card__title {
    font-size: 20px;
  }

  .ca-v2-ecosystem-card__text {
    font-size: 14px;
    line-height: 1.65;
  }

  .ca-v2-use-cases {
    padding: 24px 0 32px;
  }

  .ca-v2-use-case-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .ca-v2-use-case-card__title {
    font-size: 23px;
  }

  .ca-v2-use-case-card__text,
  .ca-v2-use-case-card__list li,
  .ca-v2-use-case-card__link {
    font-size: 14px;
  }

  #exemples.home-carnets-section {
    padding: 22px 0 34px;
  }

  .ca-v2-info {
    padding: 22px 0 34px;
  }

  .ca-v2-info-panel {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .ca-v2-info-panel__title {
    font-size: 23px;
  }

  .ca-v2-info-panel__text,
  .ca-v2-info-panel__list li {
    font-size: 14px;
  }

  .ca-v2-cta {
    padding: 22px 0 40px;
  }

  .ca-v2-cta__band {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 20px;
    border-radius: 22px;
  }

  .ca-v2-cta__icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    font-size: 28px;
  }

  .ca-v2-cta__title {
    font-size: 26px;
  }

  .ca-v2-cta__text {
    font-size: 15px;
    line-height: 1.6;
  }

  .ca-v2-cta__actions {
    justify-content: flex-start;
    padding-left: 0;
  }

  .ca-v2-cta__actions .ui-btn {
    width: 100%;
    min-width: 0;
  }
}

/* =========================================================
   SHOW PAGE: LIGHT FICHE SOCIETE
   Route: /carnets-annonces/societes/{name}
   ========================================================= */

.ca-show-v2-page--light {
  background: #eef5f9;
}

/* =========================================================
   TOP FICHE SOCIETE
   ========================================================= */

.ca-show-v2-company-hero {
  padding: 34px 0 16px;
  background: #eef5f9;
}

.ca-show-v2-light-breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: #52657c;
  font-size: 13px;
  line-height: 1.4;
}

.ca-show-v2-light-breadcrumb a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
}

.ca-show-v2-light-breadcrumb a:hover {
  color: var(--color-secondary);
}

.ca-show-v2-company-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  overflow: hidden;
  border: 1px solid #dce7f2;
  border-top: 4px solid var(--color-secondary);
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 18%, rgba(31, 196, 209, 0.10), transparent 30%),
    #ffffff;
  box-shadow: 0 18px 40px rgba(16, 36, 73, 0.07);
}

.ca-show-v2-company-card__content {
  padding: 34px 34px 32px;
}

.ca-show-v2-company-badge,
.ca-show-v2-section-label,
.ca-show-v2-new-ad__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 14px;
  border: 1px solid #bde5ec;
  border-radius: 999px;
  color: #127f8b;
  background: #eaf8fb;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ca-show-v2-company-title {
  margin: 18px 0 12px;
  color: var(--color-heading);
  font-size: 44px;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ca-show-v2-company-subtitle {
  max-width: 780px;
  margin: 0;
  color: #52657c;
  font-size: 17px;
  line-height: 1.75;
}

.ca-show-v2-company-logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 188px;
  padding: 28px;
  border-left: 1px solid #dce7f2;
  background:
    radial-gradient(circle at top right, rgba(31, 196, 209, 0.16), transparent 38%),
    #f6fbfd;
}

.ca-show-v2-company-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(16, 36, 73, 0.10);
  overflow: hidden;
}

.ca-show-v2-company-logo-box span {
  color: var(--color-primary);
  font-size: 34px;
  font-weight: 800;
}

.ca-show-v2-company-logo {
  display: block;
  width: 100%;
  height: 100%;
  padding: 22px;
  object-fit: contain;
}

/* Instrument badges in hero */

.ca-show-v2-company-instruments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.ca-show-v2-instrument-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #bde5ec;
  border-radius: 999px;
  color: var(--color-heading);
  background: #eefbfc;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.ca-show-v2-instrument-pill i {
  color: var(--color-secondary);
  font-size: 15px;
}

.ca-show-v2-instrument-pill strong {
  color: var(--color-secondary);
  font-weight: 900;
}

.ca-show-v2-instrument-pill span {
  color: var(--color-heading);
}

/* =========================================================
   COMPANY DOCUMENT TABS
   ========================================================= */

.ca-show-v2-company-info {
  padding: 14px 0 18px;
  background: #eef5f9;
}

.ca-show-v2-company-tabs-card {
  padding: 24px;
  border: 1px solid #dce7f2;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(16, 36, 73, 0.045);
}

.ca-show-v2-company-tabs-card__head {
  max-width: 820px;
  margin-bottom: 20px;
}

.ca-show-v2-company-tabs-card__head h2 {
  margin: 0 0 8px;
  color: var(--color-heading);
  font-size: 28px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ca-show-v2-company-tabs-card__head p {
  margin: 0;
  color: #52657c;
  font-size: 15px;
  line-height: 1.65;
}

.ca-show-v2-doc-search {
  margin: 0 0 18px;
}

.ca-show-v2-doc-search__field {
  position: relative;
  display: block;
  width: 100%;
  max-width: 440px;
  margin: 0;
}

.ca-show-v2-doc-search__field i {
  position: absolute;
  top: 50%;
  left: 14px;
  color: #7a8ca3;
  font-size: 15px;
  transform: translateY(-50%);
  pointer-events: none;
}

.ca-show-v2-doc-search__field input {
  width: 100%;
  min-height: 44px;
  padding: 0 16px 0 42px;
  border: 1px solid #dce7f2;
  border-radius: 12px;
  color: var(--color-text);
  background: #f8fbfe;
  font-size: 14px;
  outline: none;
}

.ca-show-v2-doc-search__field input::placeholder {
  color: #8b9bb0;
}

.ca-show-v2-doc-search__field input:focus {
  border-color: var(--color-secondary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(30, 168, 178, 0.10);
}

.ca-show-v2-doc-tabs-desktop {
  display: block;
}

.ca-show-v2-doc-accordion-mobile {
  display: none;
}

.ca-show-v2-doc-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  border: 1px solid #dce7f2;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  background: #f7fbfe;
}

.ca-show-v2-doc-tabs .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  border-right: 1px solid #dce7f2;
  border-radius: 0;
  color: #52657c;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.ca-show-v2-doc-tabs .nav-link:hover {
  color: var(--color-secondary);
}

.ca-show-v2-doc-tabs .nav-link.active {
  color: var(--color-heading);
  background: #ffffff;
  box-shadow: inset 0 3px 0 var(--color-secondary);
}

.ca-show-v2-doc-tab-content {
  max-height: 280px;
  overflow-y: auto;
  padding: 22px;
  border: 1px solid #dce7f2;
  border-radius: 0 0 14px 14px;
  background: #ffffff;
}

.ca-show-v2-doc-text {
  color: #42566e;
  font-size: 15px;
  line-height: 1.72;
}

.ca-show-v2-doc-text p:last-child {
  margin-bottom: 0;
}

.ca-show-v2-doc-text strong,
.ca-show-v2-doc-text b {
  color: var(--color-heading);
}

.ca-show-v2-doc-empty {
  margin: 0;
  color: #52657c;
  font-size: 15px;
  line-height: 1.6;
}

.ca-show-v2-doc-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ca-show-v2-doc-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #e4edf5;
  border-radius: 10px;
  color: var(--color-text);
  background: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.ca-show-v2-doc-list a:hover {
  color: var(--color-secondary);
  background: #f7fbfe;
}

.ca-show-v2-doc-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.ca-show-v2-doc-list small {
  flex: 0 0 auto;
  color: #7a8ca3;
  font-size: 12px;
  font-weight: 700;
}

/* Document search results */

.ca-show-v2-doc-search-results {
  padding: 20px;
  border: 1px solid #dce7f2;
  border-radius: 14px;
  background: #ffffff;
}

.ca-show-v2-doc-search-results h3 {
  margin: 0 0 14px;
  color: var(--color-heading);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.ca-show-v2-doc-search-results__list {
  display: grid;
  gap: 10px;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 6px;
}

.ca-show-v2-doc-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 50px;
  padding: 10px 12px;
  border: 1px solid #e4edf5;
  border-radius: 10px;
  color: var(--color-text);
  background: #ffffff;
  text-decoration: none;
}

.ca-show-v2-doc-result:hover {
  color: var(--color-secondary);
  background: #f7fbfe;
}

.ca-show-v2-doc-result span {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 8px;
  row-gap: 2px;
  min-width: 0;
}

.ca-show-v2-doc-result i {
  grid-row: 1 / span 2;
  margin-top: 2px;
  color: var(--color-secondary);
}

.ca-show-v2-doc-result strong {
  overflow: hidden;
  color: var(--color-heading);
  font-size: 14px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-show-v2-doc-result em {
  color: #7a8ca3;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.ca-show-v2-doc-result small {
  flex: 0 0 auto;
  color: #7a8ca3;
  font-size: 12px;
  font-weight: 700;
}

.ca-show-v2-doc-search-empty {
  margin: 14px 0 0;
  color: #52657c;
  font-size: 14px;
  font-weight: 700;
}

/* =========================================================
   NEW AD CTA
   ========================================================= */

.ca-show-v2-new-ad {
  padding: 0 0 22px;
  background: #eef5f9;
}

.ca-show-v2-new-ad__card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 24px 26px;
  border: 1px solid #dce7f2;
  border-left: 5px solid var(--color-secondary);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(16, 36, 73, 0.045);
}

.ca-show-v2-new-ad__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  color: var(--color-secondary);
  background: #eaf8fb;
  font-size: 28px;
}

.ca-show-v2-new-ad__content {
  min-width: 0;
}

.ca-show-v2-new-ad__badge {
  min-height: 26px;
  padding: 0 12px;
  font-size: 11px;
}

.ca-show-v2-new-ad__title {
  margin: 12px 0 8px;
  color: var(--color-heading);
  font-size: 25px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ca-show-v2-new-ad__text {
  max-width: 760px;
  margin: 0;
  color: #52657c;
  font-size: 15px;
  line-height: 1.65;
}

.ca-show-v2-new-ad__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}

.ca-show-v2-new-ad__action .ui-btn {
  min-width: 220px;
  justify-content: center;
}

.ca-show-v2-login-link {
  width: 220px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.ca-show-v2-login-link:hover {
  color: var(--color-secondary);
}

/* =========================================================
   MARKET INTRO
   ========================================================= */

.ca-show-v2-market {
  padding: 0 0 22px;
  background: #eef5f9;
}

.ca-show-v2-market__head {
  max-width: 860px;
  margin: 0 auto 26px;
  text-align: center;
}

.ca-show-v2-market__head .ca-show-v2-section-label {
  margin: 0 auto;
}

.ca-show-v2-market__title {
  position: relative;
  width: fit-content;
  margin: 18px auto 14px;
  padding-bottom: 12px;
  color: var(--color-heading);
  font-size: 30px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ca-show-v2-market__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-secondary);
  transform: translateX(-50%);
}

.ca-show-v2-market__subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: #52657c;
  font-size: 15px;
  line-height: 1.7;
}

.ca-show-v2-tabs-wrap {
  margin-bottom: 18px;
  overflow-x: auto;
}

.ca-show-v2-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  border: 0;
}

.ca-show-v2-tabs .nav-link {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #dce7f2;
  border-radius: 999px;
  color: var(--color-heading);
  background: #ffffff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.ca-show-v2-tabs .nav-link.active {
  color: #ffffff;
  border-color: var(--color-secondary);
  background: var(--color-secondary);
}

/* Current title pill */

.ca-show-v2-current-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
  margin: 0 auto 22px;
  padding: 10px 16px;
  border: 1px solid #dce7f2;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(16, 36, 73, 0.04);
}

.ca-show-v2-current-title__type {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--color-secondary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ca-show-v2-current-title__name {
  color: var(--color-heading);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

/* =========================================================
   ORDER TABLES + EXCHANGES
   ========================================================= */

.ca-show-v2-market .row.g-4 {
  align-items: stretch;
}

.ca-show-v2-order-card,
.ca-show-v2-panel {
  border: 1px solid #dce7f2;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(16, 36, 73, 0.045);
  overflow: hidden;
}

.ca-show-v2-order-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ca-show-v2-order-card__head,
.ca-show-v2-panel__head {
  padding: 22px 22px 0;
}

.ca-show-v2-order-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.ca-show-v2-order-card__head span {
  display: inline-flex;
  color: var(--color-secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ca-show-v2-order-card__head h3,
.ca-show-v2-panel__head h2 {
  margin: 6px 0 0;
  color: var(--color-heading);
  font-size: 24px;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ca-show-v2-panel__head--center {
  text-align: center;
}

.ca-show-v2-order-card__arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  color: var(--color-secondary);
  font-size: 28px;
}

.ca-show-v2-order-card--sell .ca-show-v2-order-card__arrow {
  color: var(--color-primary);
}

.ca-show-v2-order-card__body,
.ca-show-v2-panel__body {
  padding: 16px 22px 22px;
}

.ca-show-v2-order-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.ca-show-v2-table-shell {
  flex: 1 1 auto;
  border: 1px solid #dbe6f1;
  border-radius: 0;
  background: #ffffff;
  overflow: hidden;
}

.ca-show-v2-table-wrap {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #b7c8d9 #eef3f8;
}

.ca-show-v2-table-wrap--orders {
  height: 242px;
  max-height: 242px;
}

.ca-show-v2-table-wrap--exchanges {
  max-height: 202px;
}

.ca-show-v2-table {
  width: 100%;
  min-width: 0;
  margin: 0;
  border-collapse: collapse;
  table-layout: fixed;
  font-variant-numeric: tabular-nums;
}

.ca-show-v2-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 12px 16px;
  border-bottom: 1px solid #dbe6f1;
  background: #f6f9fc;
  color: #52657c;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-align: left;
  white-space: nowrap;
}

.ca-show-v2-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid #ebf1f7;
  background: #ffffff;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.35;
  vertical-align: middle;
  white-space: nowrap;
}

.ca-show-v2-table tbody tr:nth-child(even) td {
  background: #fbfdff;
}

.ca-show-v2-table tbody tr:hover td {
  background: #f4f9fc;
}

.ca-show-v2-table tbody tr:last-child td {
  border-bottom: 0;
}

.ca-show-v2-table th:nth-child(1),
.ca-show-v2-table td:nth-child(1) {
  width: 30%;
  text-align: left;
}

.ca-show-v2-table th:nth-child(2),
.ca-show-v2-table td:nth-child(2) {
  width: 35%;
  text-align: right;
}

.ca-show-v2-table th:nth-child(3),
.ca-show-v2-table td:nth-child(3) {
  width: 35%;
  text-align: right;
}

.ca-show-v2-table--exchanges th:nth-child(1),
.ca-show-v2-table--exchanges td:nth-child(1) {
  width: 26%;
  text-align: left;
}

.ca-show-v2-table--exchanges th:nth-child(2),
.ca-show-v2-table--exchanges td:nth-child(2) {
  width: 24%;
  text-align: right;
}

.ca-show-v2-table--exchanges th:nth-child(3),
.ca-show-v2-table--exchanges td:nth-child(3) {
  width: 25%;
  text-align: right;
}

.ca-show-v2-table--exchanges th:nth-child(4),
.ca-show-v2-table--exchanges td:nth-child(4) {
  width: 25%;
  text-align: right;
}

.ca-show-v2-table tbody td:nth-child(1),
.ca-show-v2-table tbody td:nth-child(2) {
  color: var(--color-heading);
  font-weight: 800;
}

.ca-show-v2-table a {
  color: var(--color-primary);
  font-weight: 800;
  text-decoration: none;
}

.ca-show-v2-table a:hover {
  color: var(--color-secondary);
}

.ca-show-v2-table td[colspan] {
  padding: 22px 16px;
  color: var(--color-text-muted);
  text-align: center;
  font-weight: 700;
}

.ca-show-v2-empty-row {
  min-height: 154px;
}

.ca-show-v2-empty-state {
  display: grid;
  place-items: center;
  min-height: 154px;
  color: #52657c;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.ca-show-v2-table-wrap::-webkit-scrollbar {
  width: 8px;
}

.ca-show-v2-table-wrap::-webkit-scrollbar-track {
  background: #eef3f8;
}

.ca-show-v2-table-wrap::-webkit-scrollbar-thumb {
  background: #b7c8d9;
  border-radius: 999px;
}

.ca-show-v2-table-wrap::-webkit-scrollbar:horizontal {
  display: none;
  height: 0;
}

.ca-show-v2-exchanges {
  margin-top: 22px;
}

/* =========================================================
   TRUST CARDS
   ========================================================= */

.ca-show-v2-trust {
  padding: 22px 0 46px;
  background: #eef5f9;
}

.ca-show-v2-trust-card {
  padding: 26px 24px;
  border: 1px solid #dce7f2;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(16, 36, 73, 0.045);
}

.ca-show-v2-trust-card i {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--color-secondary);
  font-size: 30px;
}

.ca-show-v2-trust-card h3 {
  margin: 0 0 10px;
  color: var(--color-heading);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 800;
}

.ca-show-v2-trust-card p {
  margin: 0;
  color: #52657c;
  font-size: 15px;
  line-height: 1.65;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {
  .ca-show-v2-company-card {
    grid-template-columns: 1fr;
  }

  .ca-show-v2-company-logo-panel {
    min-height: 150px;
    border-top: 1px solid #dce7f2;
    border-left: 0;
  }

  .ca-show-v2-new-ad__card {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .ca-show-v2-new-ad__action {
    grid-column: 2;
    align-items: flex-start;
  }

  .ca-show-v2-new-ad__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .ca-show-v2-company-hero {
    padding-top: 24px;
  }

  .ca-show-v2-light-breadcrumb {
    font-size: 12px;
  }

  .ca-show-v2-company-card__content {
    padding: 26px 22px;
  }

  .ca-show-v2-company-title {
    font-size: 34px;
  }

  .ca-show-v2-company-subtitle,
  .ca-show-v2-company-tabs-card__head p,
  .ca-show-v2-market__subtitle,
  .ca-show-v2-new-ad__text {
    font-size: 14px;
    line-height: 1.65;
  }

  .ca-show-v2-company-logo-box {
    width: 104px;
    height: 104px;
  }

  .ca-show-v2-company-tabs-card {
    padding: 20px;
    border-radius: 18px;
  }

  .ca-show-v2-company-tabs-card__head h2 {
    font-size: 24px;
  }

  .ca-show-v2-doc-search__field {
    max-width: none;
  }

  .ca-show-v2-doc-tabs-desktop {
    display: none;
  }

  .ca-show-v2-doc-accordion-mobile {
    display: grid;
    gap: 10px;
  }

  .ca-show-v2-doc-accordion-mobile .accordion-item {
    border: 1px solid #dce7f2;
    border-radius: 12px;
    overflow: hidden;
  }

  .ca-show-v2-doc-accordion-mobile .accordion-button {
    display: flex;
    gap: 8px;
    min-height: 46px;
    color: var(--color-heading);
    background: #ffffff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: none;
  }

  .ca-show-v2-doc-accordion-mobile .accordion-button:not(.collapsed) {
    background: #f2f9fb;
  }

  .ca-show-v2-doc-accordion-mobile .accordion-body {
    padding: 14px;
    border-top: 1px solid #edf2f7;
  }

  .ca-show-v2-new-ad__card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 20px;
    border-left: 0;
    border-top: 4px solid var(--color-secondary);
  }

  .ca-show-v2-new-ad__action {
    grid-column: auto;
    align-items: stretch;
  }

  .ca-show-v2-new-ad__action .ui-btn,
  .ca-show-v2-login-link {
    width: 100%;
  }

  .ca-show-v2-new-ad__title {
    font-size: 22px;
  }

  .ca-show-v2-market__head {
    text-align: left;
  }

  .ca-show-v2-market__head .ca-show-v2-section-label {
    margin: 0;
  }

  .ca-show-v2-market__title {
    margin-left: 0;
    font-size: 26px;
  }

  .ca-show-v2-market__title::after {
    left: 0;
    transform: none;
  }

  .ca-show-v2-market__subtitle {
    margin: 0;
  }

  .ca-show-v2-current-title {
    margin-left: 0;
    margin-right: 0;
    border-radius: 16px;
  }

  .ca-show-v2-order-card__head,
  .ca-show-v2-panel__head {
    padding: 18px 16px 0;
  }

  .ca-show-v2-order-card__body,
  .ca-show-v2-panel__body {
    padding: 12px 16px 16px;
  }

  .ca-show-v2-table-wrap--orders {
    height: 220px;
    max-height: 220px;
  }

  .ca-show-v2-table-wrap--exchanges {
    max-height: 200px;
  }

  .ca-show-v2-table thead th,
  .ca-show-v2-table tbody td {
    padding: 10px 12px;
    font-size: 12px;
  }

  .ca-show-v2-trust-card {
    padding: 22px 20px;
  }
}

