/* Style dla sekcji LP 2/2 */
/* ==========================================================================
   Shared & Utility Components (style-2)
   ========================================================================== */
/* Magenta gradient text helper */
.lcc-lp .c-text-magenta-gradient,
.lcc-lp .components__item-title--magenta,
.lcc-lp .partners__title--magenta,
.lcc-lp .infrastructure__title--magenta {
  background: var(--magenta-gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.lcc-lp .c-pill-btn-group {
  display: flex;
  align-items: center;
}
.lcc-lp .c-pill-btn,
.lcc-lp .infrastructure__btn-all,
.lcc-lp .questions__btn-download,
.lcc-lp .questions__btn-all {
  display: inline-flex;
  align-items: center;
  background-color: var(--brand-black, #060606);
  color: var(--white);
  padding: 20px 40px;
  border-radius: 40px;
  line-height: 1.2;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s ease;
  margin-right: -6px;
}
.lcc-lp .c-pill-btn:hover,
.lcc-lp .infrastructure__btn-all:hover,
.lcc-lp .questions__btn-download:hover,
.lcc-lp .questions__btn-all:hover {
  text-decoration: none;
}
.lcc-lp .c-pill-btn-icon,
.lcc-lp .infrastructure__btn-icon,
.lcc-lp .questions__btn-icon {
  background-color: var(--brand-black, #060606);
  width: 64px;
  height: 64px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}
/* Action link with icon helper */
.lcc-lp .c-action-link,
.lcc-lp .commitment__quote-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.lcc-lp .c-action-link:hover .lcc-lp .commitment__quote-link:hover {
  opacity: 0.85;
  text-decoration: none;
}

.lcc-lp .c-action-link__icon,
.lcc-lp .commitment__quote-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Helper for magenta color text */
.lcc-lp .c-text-magenta,
.lcc-lp .components__section-label--magenta {
  color: var(--magenta, #e20074);
}

/* Highlight helper */
.lcc-lp .infrastructure__highlight {
  font-weight: 700;
}

/* ==========================================================================
   Components Section (.components)
   ========================================================================== */

.lcc-lp .components {
  background-color: var(--brand-black, #060606);
  color: var(--white);
  position: relative;
  padding-bottom: 100px;
}

.lcc-lp .components__wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.lcc-lp .components__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lcc-lp .components__tag {
  font-size: 24px;
  line-height: 1.25;
  color: var(--magenta);
  font-weight: 500;
}

.lcc-lp .components__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

.lcc-lp .components__accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 50px;
}

.lcc-lp .components__item {
  position: relative;
  background: rgba(31, 30, 30, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--brand-grafit);
  border-radius: 60px;
  padding: 50px;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.lcc-lp .components__item--active {
  background-color: var(--brand-black);
  border-color: var(--brand-grafit);
}

/* Background SVGs Absolute Positioning Template */
.lcc-lp .components__bg-graphic {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  display: none;
}

.lcc-lp .components__bg-graphic svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 60px;
}

.lcc-lp .components__item--active .components__bg-graphic {
  display: block;
}

.lcc-lp .components__bg-graphic--top-right {
  top: 0%;
  right: 0px;
  height: 100%;
  width: 60%;
}

.lcc-lp .components__bg-graphic--bottom-left {
  bottom: -10px;
  left: 0;
  width: 60%;
}

/* Item Header */
.lcc-lp .components__item-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}

.lcc-lp .components__item-title-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lcc-lp .components__item-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}

.lcc-lp .components__item-desc {
  font-size: 20px;
  line-height: 1.35;
  color: var(--light-gray-brand);
}

/* Toggle Button & Arrow Rotation */
.lcc-lp .components__toggle-btn {
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.lcc-lp .components__arrow-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}

.lcc-lp .components__item--active .components__arrow-icon {
  transform: rotate(0deg);
}

/* Content & Grid */
.lcc-lp .components__item-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.lcc-lp .components__item-content > .components__grid {
  overflow: hidden;
}

.lcc-lp .components__item--active .components__item-content {
  grid-template-rows: 1fr;
}

.lcc-lp
  .components__item--active
  .components__item-content
  > .components__grid {
  overflow: visible;
}

.lcc-lp .components__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 0;
  transition: padding-top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.lcc-lp .components__item--active .components__grid {
  padding-top: 50px;
}

.lcc-lp .components__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lcc-lp .components__section-label {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

/* Requirements & Services List */
.lcc-lp .components__req-list,
.lcc-lp .components__services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 18px;
  line-height: 1.4;
  color: var(--white);
}

.lcc-lp .components__service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.lcc-lp .components__bullet {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background-color: var(--magenta);
  flex-shrink: 0;
}

.lcc-lp .components__service-text {
  font-size: 18px;
  line-height: 1.4;
  color: var(--white);
}

.lcc-lp .components__legal-note {
  font-size: 13px;
  line-height: 1.4;
  color: var(--light-gray-brand);
  margin-top: 10px;
}

/* Tooltip & Info Button */
.lcc-lp .components__info-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lcc-lp .components__info-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lcc-lp .components__tooltip {
  position: absolute;
  right: 30px;
  bottom: -100%;
  top: auto;
  transform: translateY(-8px);

  background-color: var(--white);
  color: var(--brand-black);
  padding: 20px;
  border-radius: 16px;
  width: 260px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  gap: 8px;
  z-index: 99;
}

.lcc-lp .components__tooltip::after {
  content: '';
  position: absolute;
  bottom: 15px;
  right: -11px;
  top: auto;
  transform: none;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--white);
  border-bottom: none;
  transform: rotate(-90deg);
}

.lcc-lp .components__tooltip strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-black);
}

.lcc-lp .components__tooltip p {
  font-size: 14px;
  line-height: 1.35;
  color: var(--brand-grafit);
}

.lcc-lp .components__info-wrapper:hover .components__tooltip {
  display: flex;
}

/* ---- Consultation Banner ---- */
.lcc-lp .components__consultation-banner {
  background: var(--magenta-gradient-brand);
  border-radius: 40px;
  padding: 60px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.lcc-lp .components__consultation-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lcc-lp .components__consultation-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  color: var(--white);
}

.lcc-lp .components__consultation-subtitle {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;

  color: var(--white);
}

.lcc-lp .components__consultation-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.lcc-lp .components__consultation-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 20px;
  line-height: 1.25;
  color: var(--white);
}

.lcc-lp .components__consultation-check {
  flex-shrink: 0;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lcc-lp .components__consultation-actions {
  display: flex;
  align-items: center;

  flex-shrink: 0;
}

.lcc-lp .components__consultation-btn {
  background-color: var(--white);
  color: var(--brand-black, #060606);
  padding: 20px 40px;
  border-radius: 100px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
  margin-right: -3px;
}

.lcc-lp .components__consultation-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transform: translateY(-1px);
}

.lcc-lp .components__consultation-icon-btn {
  background-color: var(--white);
  width: 64px;
  height: 64px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.lcc-lp .components__consultation-icon-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* ==========================================================================
   5-Year Commitment Section
   ========================================================================== */

.lcc-lp .commitment {
  position: relative;
  background-color: var(--brand-black, #060606);
  color: var(--white);
}

.lcc-lp .commitment__section {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 10;
}

.lcc-lp .commitment__hero {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 60px;
  align-items: center;
}

.lcc-lp .commitment__hero-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 560px;
}

.lcc-lp .commitment__years {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  background: var(--magenta-gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.lcc-lp .commitment__years-desc {
  font-size: 20px;
  line-height: 1.15;
  color: var(--grafit-light-brand);
}

.lcc-lp .commitment__hero-right {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.14;
  color: var(--white);
  width: 90%;
}

/* Cards Grid */
.lcc-lp .commitment__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lcc-lp .commitment__card {
  background: rgba(31, 30, 30, 0.9);
  border: 1px solid var(--brand-grafit, #2a2a2a);
  border-radius: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.lcc-lp .commitment__card:hover,
.lcc-lp .commitment__card--white {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brand-black, #060606);
}

.lcc-lp .commitment__card-tag {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--magenta, #e20074);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.lcc-lp .commitment__card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  min-height: 60px;
  margin: 0;
  color: var(--white);
  transition: color 0.3s ease;
}

.lcc-lp .commitment__card:hover .commitment__card-title,
.lcc-lp .commitment__card--white .commitment__card-title {
  color: var(--brand-black, #060606);
}

.lcc-lp .commitment__card-desc {
  font-size: 20px;
  line-height: 1.25;
  color: var(--grafit-light-brand, #ccd6de);
  margin: 0;
  transition: color 0.3s ease;
}

.lcc-lp .commitment__card:hover .commitment__card-desc,
.lcc-lp .commitment__card--white .commitment__card-desc {
  color: var(--brand-grafit);
}

/* Bottom Section   Image Placeholder */
.lcc-lp .commitment__bottom-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: -500px;
}

/* style for commitment tooltip */
.lcc-lp .commitment__tooltip-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
}

.lcc-lp .commitment__quote-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.lcc-lp .commitment__quote-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lcc-lp .commitment__tooltip {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  background-color: var(--white);
  color: var(--brand-black);
  padding: 20px;
  border-radius: 16px;
  width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  gap: 8px;
  z-index: 99;
}

.lcc-lp .commitment__tooltip::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 24px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--white);
}

.lcc-lp .commitment__tooltip strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-black);
}

.lcc-lp .commitment__tooltip p {
  font-size: 14px;
  line-height: 1.35;
  color: var(--brand-grafit);
  margin: 0;
}

.lcc-lp .commitment__tooltip-wrapper:hover .commitment__tooltip {
  display: flex;
}

.lcc-lp .commitment__bottom-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color;
  pointer-events: none;
}

.lcc-lp .commitment__bottom-image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lcc-lp .commitment__bottom-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.lcc-lp .partners {
  position: relative;
}

.lcc-lp .partners__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 60px;
}

.lcc-lp .partners__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lcc-lp .partners__title {
  font-size: 48px;

  line-height: 1.14;
  color: var(--brand-black);
  margin: 0;
}

.lcc-lp .partners__subtitle {
  font-size: 20px;
  line-height: 1.25;
  color: var(--brand-grafit);
  margin: 0;
}

.lcc-lp .partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  row-gap: 24px;

  width: 100%;
  align-items: center;
}

.lcc-lp .partners__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  min-height: 90px;
}

.lcc-lp .partners__logo {
  max-width: 100%;
  max-height: 132px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
  cursor: pointer;
}

.lcc-lp .partners__item:hover .partners__logo,
.lcc-lp .partners__logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.lcc-lp .magenta-graphic {
  position: absolute;
  left: 0%;
  bottom: -15%;
  z-index: 1;
  pointer-events: none;
  display: block;
}

.lcc-lp .magenta-graphic img {
  max-width: 76%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Infrastructure Section (.infrastructure)
   ========================================================================== */

.lcc-lp .infrastructure {
  position: relative;
  padding: 80px 0;
  z-index: 10;
}

.lcc-lp .infrastructure__wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.lcc-lp .infrastructure__header {
  display: flex;
  flex-direction: column;
}

.lcc-lp .infrastructure__title {
  font-size: 48px;

  line-height: 1.25;
  color: var(--brand-black, #060606);
  margin: 0;
  max-width: 70%;
}

.lcc-lp .infrastructure__btn-wrapper {
  display: flex;
  gap: 0;
}

.lcc-lp .infrastructure__grid {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.lcc-lp .infrastructure__row {
  display: grid;
  gap: 20px;
}

.lcc-lp .infrastructure__row--2col {
  grid-template-columns: repeat(2, 1fr);
}

.lcc-lp .infrastructure__card {
  background-color: var(--white);
  border-radius: 40px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  height: 100%;
  box-sizing: border-box;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.lcc-lp .infrastructure__card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.lcc-lp .infrastructure__card-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lcc-lp .infrastructure__icon-placeholder {
  color: var(--magenta, #e20074);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lcc-lp .infrastructure__card-title {
  font-size: 28px;
  line-height: 1.14;
  color: var(--black-brand);
  margin: 0;
}

.lcc-lp .infrastructure__card-desc {
  font-size: 20px;
  line-height: 1.25;
  color: var(--brand-grafit, #262626);
  margin: 0;
  flex-grow: 1;
}

/* ==========================================================================
   Questions Section (.questions)
   ========================================================================== */
.lcc-lp .questions__wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 60px;

  position: relative;
  z-index: 10;
}
.lcc-lp .questions__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lcc-lp .questions__title {
  font-size: 48px;

  line-height: 1.14;
  color: var(--brand-black, #060606);
  margin: 0;
}

.lcc-lp .questions__subtitle {
  font-size: 20px;
  line-height: 1.25;
  color: var(--brand-grafit);
  margin: 0;
}

.lcc-lp .questions__btn-wrapper {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}

/* Right Side - Tabs & Accordion */
.lcc-lp .questions__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lcc-lp .questions__accordion:not(:first-child) {
  display: flex;
  flex-direction: column;
}

.lcc-lp .questions__accordion:not(:first-child) {
  border-top: 1px solid var(--gray-light, #e0e0e0);
}

.lcc-lp .questions__item {
  border-bottom: 1px solid var(--gray-light, #e0e0e0);
}

.lcc-lp .questions__item-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: transparent;
  border: none;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.lcc-lp .questions__item-title {
  font-family: 'teleneobold', 'TeleNeo', sans-serif;
  font-size: 24px;
  line-height: 1.16;
  color: var(--brand-black, #060606);
}

.lcc-lp .questions__item-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-black, #060606);
  transition: transform 0.3s ease;
}

.lcc-lp .questions__item--active .questions__item-arrow {
  transform: rotate(180deg);
}

.lcc-lp .questions__item-content {
  display: none;
  padding-bottom: 24px;
  font-size: 20px;
  line-height: 1.15;
  color: var(--brand-grafit);
}

.lcc-lp .questions__item--active .questions__item-content {
  display: block;
}

.lcc-lp .questions__footer {
  display: flex;

  justify-content: flex-end;
  gap: 12px;
  font-size: 16px;
  color: var(--brand-black);
  margin-top: 16px;
  font-weight: 600;
}
.lcc-lp .questions__footer-link {
  color: var(--magenta, #e20074);
  font-weight: 700;
  text-decoration: none;
  display: flex;
  gap: 5px;
  align-items: normal;
}
.lcc-lp .questions__footer-link:hover {
  text-decoration: underline;
}

.lcc-lp .questions__btn-download {
  background-color: transparent;
  color: var(--brand-black, #060606);
  border: 2px solid var(--brand-black, #060606) !important;
}

/* ==========================================================================
   Consultation Banner Section (Leadownik)
   ========================================================================== */

.lcc-lp .consultation-banner-section {
  padding: 50px 0;
  background: var(--magenta-gradient-brand);
}

.lcc-lp .consultation-banner {
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.lcc-lp .consultation-banner__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lcc-lp .consultation-banner__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  color: var(--white);
}

.lcc-lp .consultation-banner__subtitle {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  color: var(--white);
}

.lcc-lp .consultation-banner__actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.lcc-lp .consultation-banner__btn {
  background-color: var(--brand-black, #060606);
  color: var(--white);
  padding: 20px 40px;
  border-radius: 40px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s ease;
  margin-right: -6px;
}

.lcc-lp .consultation-banner__btn:hover {
  text-decoration: none;
}

.lcc-lp .consultation-banner__btn-icon {
  background-color: var(--brand-black, #060606);
  width: 64px;
  height: 64px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}
.lcc-lp .consultation-banner__btn-icon > span {
  display: flex;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

@media (max-width: 1600px) {
  .lcc-lp .commitment__bottom-image-wrapper {
    margin-top: -350px;
  }
  .lcc-lp .magenta-graphic {
    bottom: -15%;
  }
}
@media (max-width: 1200px) {
  .lcc-lp .commitment__bottom-image-wrapper {
    margin-top: -250px;
  }
  .lcc-lp .magenta-graphic {
    display: none;
  }
}
@media (max-width: 960px) {
  .lcc-lp .components__title {
    font-size: 36px;
  }
  .lcc-lp .components__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .lcc-lp .components__item-title {
    font-size: 24px;
  }
  .lcc-lp .components__item-desc {
    font-size: 16px;
  }
  .lcc-lp .components__consultation-banner {
    flex-direction: column;
    padding: 36px 32px;
  }
  .lcc-lp .commitment__hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .lcc-lp .commitment__hero-right {
    width: 100%;
  }
  .lcc-lp .commitment__cards {
    grid-template-columns: 1fr;
  }
  .lcc-lp .partners__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .lcc-lp .partners__item:last-child {
    grid-column: 2;
  }
  .lcc-lp .infrastructure__header {
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    align-items: flex-start;
  }
  .lcc-lp .infrastructure__row--2col {
    grid-template-columns: 1fr;
  }
  .lcc-lp .commitment__bottom-image-wrapper {
    margin-top: -100px;
  }
  .lcc-lp .infrastructure__title {
    max-width: 100%;
  }

  .lcc-lp .questions__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lcc-lp .questions__footer {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .lcc-lp .questions__btn-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .lcc-lp .consultation-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 32px;
  }
}
@media (max-width: 480px) {
  .lcc-lp .questions__btn-all,
  .lcc-lp .questions__btn-download,
  .lcc-lp .questions__btn-download,
  .lcc-lp .consultation-banner__btn,
  .lcc-lp .infrastructure__btn-all {
    font-size: 14px;
    padding: 20px;
  }
  .lcc-lp .components__toggle-btn {
    width: 40px;
    height: 40px;
  }
  .lcc-lp .questions__btn-icon,
  .lcc-lp .consultation-banner__btn-icon,
  .lcc-lp .infrastructure__btn-icon {
    width: 56px;
    height: 56px;
  }
  .lcc-lp .components__item {
    padding: 24px;
    border-radius: 24px;
  }
  .lcc-lp .components__title,
  .lcc-lp .partners__title {
    font-size: 30px;
  }
  .lcc-lp .components__item-title {
    font-size: 20px;
  }

  .lcc-lp .components__consultation-banner {
    padding: 24px;
    border-radius: 24px;
  }
  .lcc-lp .components__consultation-title {
    font-size: 24px;
  }
  .lcc-lp .consultation-banner {
    padding: 24px;
    border-radius: 24px;
  }
  .lcc-lp .consultation-banner__title {
    font-size: 24px;
  }

  .lcc-lp .partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lcc-lp .infrastructure__card {
    padding: 24px;
    border-radius: 24px;
  }
  .lcc-lp .infrastructure__card-title {
    font-size: 20px;
  }
  .lcc-lp .infrastructure__card-desc {
    font-size: 16px;
  }

  .lcc-lp .commitment__bottom-image-wrapper {
    margin-top: 0px;
  }

  .lcc-lp .commitment__hero-right {
    font-size: 24px;
  }
  .lcc-lp .infrastructure__title {
    font-size: 30px;
    width: 100%;
  }
}
