/* ===========================================
   ZenOps - Teleport Solution Page Styles
   =========================================== */

/* ========== VARIABLES ========== */
:root {
  --teleport-primary: #543BC7;
  --teleport-primary-light: #7166EE;
  --teleport-primary-dark: #3B307F;
  --teleport-accent: #8584F5;
  --teleport-gradient: linear-gradient(135deg, #543BC7 0%, #A7ADFA 100%);
  --teleport-card-gradient: radial-gradient(459.76% 431.16% at 27.94% -293.06%, rgba(113, 102, 238, 1) 0%, rgba(18, 24, 38, 1) 100%);
}

/* ========== BACKGROUND OVERRIDE ========== */
.page-background--teleport .page-background__stripes {
  background: repeating-linear-gradient(
    90deg,
    rgba(18, 24, 38, 0.15) 0px,
    rgba(41, 45, 127, 0.3) 50px,
    transparent 50px,
    transparent 54px
  );
  filter: blur(1px);
}

.page-background--teleport .page-background__gradient-1 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background:
    radial-gradient(90.31% 12.79% at 50% 84.87%, #3B307F 0%, rgba(18, 24, 38, 0) 100%),
    radial-gradient(100% 21.91% at 0% 64.1%, #3B307F 0%, rgba(18, 24, 38, 0) 100%),
    radial-gradient(80.46% 13.66% at 100% 37.31%, #3B307F 0%, rgba(18, 24, 38, 0.2) 100%),
    radial-gradient(105.24% 6.89% at 0% 18.4%, #3B307F 0%, rgba(18, 24, 38, 0) 100%),
    radial-gradient(96.76% 11.05% at 100% 8%, #3B307F 0%, rgba(18, 24, 38, 0) 100%);
}

.page-background--teleport .page-background__gradient-2 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(50% 8.93% at 0% 33.53%, #121826 0%, rgba(18, 24, 38, 0) 100%),
    radial-gradient(60.8% 8.41% at 50% 100%, #121826 0%, rgba(18, 24, 38, 0) 100%);
}

/* ========== BUTTON OVERRIDE ========== */
.btn-primary--teleport {
  background: var(--teleport-gradient);
  color: #121826;
  box-shadow: 0px 10px 25px rgba(84, 59, 199, 0.3);
}

.btn-primary--teleport:hover {
  box-shadow: 0px 14px 30px rgba(84, 59, 199, 0.4);
}

.btn-primary--large {
  width: auto;
  padding: 16px 48px;
  font-size: 18px;
}

/* ========== HERO TELEPORT ========== */
.teleport-hero {
  position: relative;
  width: 100%;
  padding: 200px 80px 100px;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.teleport-hero__container {
  max-width: 1352px;
  width: 100%;
  text-align: center;
}

.teleport-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px 8px 14px;
  background: rgba(84, 59, 199, 0.12);
  border: 1px solid rgba(133, 132, 245, 0.25);
  border-radius: 100px;
  margin-bottom: 40px;
  transition: border-color 0.3s ease;
}

.teleport-hero__badge:hover {
  border-color: rgba(133, 132, 245, 0.5);
}

.teleport-hero__badge-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.teleport-hero__badge-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #A0B6D9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.teleport-hero__title {
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 400;
  font-size: 120px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #F4F6FB;
  margin-bottom: 32px;
}

.teleport-hero__title-line {
  display: block;
}

.teleport-hero__title-accent {
  color: var(--teleport-accent);
}

.teleport-hero__description {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0.03em;
  color: #A0B6D9;
  max-width: 1130px;
  margin: 0 auto 40px;
}

.teleport-hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ========== NAVIGATION TABS ========== */
.teleport-tabs {
  position: sticky;
  top: 100px;
  z-index: 100;
  background: linear-gradient(180deg, rgba(30, 24, 60, 0.97) 0%, rgba(18, 24, 38, 0.97) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(84, 59, 199, 0.3);
  padding: 0 80px;
  width: 100vw;
  margin-left: calc((100% - 100vw) / 2);
}

.teleport-tabs__container {
  max-width: 1352px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  padding: 16px 0;
  overflow-x: auto;
}

.teleport-tabs__item {
  padding: 4px 20px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #F4F6FB;
  background: transparent;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

.teleport-tabs__item:hover {
  color: #FFFFFF;
  background: rgba(90, 65, 224, 0.15);
}

.teleport-tabs__item.active {
  color: #F4F6FB;
  background: radial-gradient(459.76% 431.16% at 27.94% -293.06%, rgba(90, 65, 224, 1) 0%, rgba(18, 24, 38, 1) 100%);
  border: none;
  box-shadow: none;
}

/* ========== SECTIONS ========== */
.teleport-section {
  position: relative;
  width: 100%;
  padding: 100px 80px;
  scroll-margin-top: 210px;
}

.teleport-section--contact {
  padding-bottom: 60px;
}

.teleport-section__header {
  max-width: 1352px;
  margin: 0 auto 60px;
}

.teleport-section__kicker {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0.03em;
  color: #8584F5;
  margin-bottom: 16px;
}

.teleport-section__title {
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 110%;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.teleport-section__subtitle {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #A0B6D9;
  max-width: 800px;
}

.teleport-section__cta {
  text-align: center;
  margin-top: 60px;
}

.teleport-section__cta h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0.03em;
  color: #F4F6FB;
  margin-bottom: 24px;
}



/* ========== VISION SECTION ========== */
.teleport-vision__grid {
  max-width: 1352px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.teleport-vision__card {
  position: relative;
  border-radius: 15px;
  padding: 45px;
  overflow: hidden;
}

.teleport-vision__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teleport-card-gradient);
  opacity: 0.6;
  border-radius: 15px;
  border: 1px solid rgba(160, 182, 217, 0.15);
  z-index: 0;
}

.teleport-vision__card > * {
  position: relative;
  z-index: 1;
}

.teleport-vision__card--main {
  grid-column: 1;
}

.teleport-vision__card-title {
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: #F4F6FB;
  margin-bottom: 20px;
}

.teleport-vision__card-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #A0B6D9;
  margin-bottom: 24px;
}

.teleport-vision__card-text strong {
  color: #FFFFFF;
}

.teleport-vision__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.teleport-vision__list li {
  position: relative;
  padding-left: 24px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #A0B6D9;
}

.teleport-vision__list li::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  left: 0;
  top: 8px;
  background: var(--teleport-accent);
  border-radius: 50%;
}

.teleport-vision__quotes {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.teleport-vision__quote {
  position: relative;
  border-radius: 15px;
  padding: 32px 45px;
  margin: 0;
  overflow: hidden;
  border-left: none;
}

.teleport-vision__quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teleport-card-gradient);
  opacity: 0.6;
  border-radius: 15px;
  border: 1px solid rgba(160, 182, 217, 0.15);
  z-index: 0;
}

.teleport-vision__quote > * {
  position: relative;
  z-index: 1;
}

.teleport-vision__quote blockquote {
  font-family: 'Raleway', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.03em;
  color: #A7ADFA;
  margin-bottom: 16px;
}

.teleport-vision__quote blockquote strong {
  color: #A7ADFA;
  font-style: normal;
}

.teleport-vision__quote figcaption {
  display: flex;
  gap: 8px;
  align-items: center;
}

.teleport-vision__quote-name {
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: #F4F6FB;
}

.teleport-vision__quote-role {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: #A0B6D9;
}

.teleport-vision__quote-role::before {
  content: '•';
  margin-right: 8px;
}

.teleport-vision__features {
  max-width: 1352px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ========== CARDS ========== */
.teleport-card {
  position: relative;
  border-radius: 15px;
  padding: 32px;
  overflow: hidden;
}

.teleport-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teleport-card-gradient);
  opacity: 0.6;
  border-radius: 15px;
  border: 1px solid rgba(160, 182, 217, 0.15);
  z-index: 0;
}

.teleport-card > * {
  position: relative;
  z-index: 1;
}

.teleport-card__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.teleport-card__tag--today {
  background: rgba(255, 193, 7, 0.2);
  color: #FFC107;
}

.teleport-card__tag--solution {
  background: rgba(81, 47, 201, 0.3);
  color: var(--teleport-accent);
}

.teleport-card__tag--future {
  background: rgba(59, 255, 154, 0.2);
  color: #3BFF9A;
}

.teleport-card__tag--velocity {
  background: rgba(255, 141, 40, 0.2);
  color: #FF8D28;
}

.teleport-card__tag--visibility {
  background: rgba(0, 200, 179, 0.2);
  color: #00C8B3;
}

.teleport-card__tag--risk {
  background: rgba(255, 56, 60, 0.2);
  color: #FF383C;
}

.teleport-card__tag--compliance {
  background: rgba(255, 193, 7, 0.2);
  color: #FFC107;
}

.teleport-card__tag--scale {
  background: rgba(100, 181, 246, 0.2);
  color: #64B5F6;
}

.teleport-card__tag--cost {
  background: rgba(174, 255, 214, 0.2);
  color: #AEFFD6;
}

.teleport-card__title {
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
  letter-spacing: 0.02em;
  color: #F4F6FB;
  margin-bottom: 12px;
}

.teleport-card__text {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  line-height: 120%;
  color: #A0B6D9;
}

/* ========== DÉFIS GRID ========== */
.teleport-defis__grid {
  max-width: 1352px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ========== PERSONAS ========== */
.teleport-personas__wrapper {
  max-width: 1352px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(84, 59, 199, 0.15) 0%, rgba(84, 59, 199, 0.03) 100%);
  border: 1px solid rgba(84, 59, 199, 0.20);
}

.teleport-personas__tabs {
  max-width: unset;
  margin: 0 0 40px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.teleport-personas__tab {
  padding: 4px 20px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #F4F6FB;
  background: rgba(84, 59, 199, 0.2);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.teleport-personas__tab:hover {
  color: #FFFFFF;
  background: rgba(84, 59, 199, 0.35);
}

.teleport-personas__tab.active {
  color: #F4F6FB;
  background: rgba(84, 59, 199, 1);
  box-shadow: none;
}

.teleport-personas__contents {
  max-width: unset;
  margin: 0;
}

.teleport-persona {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  border-radius: 15px;
  padding: 48px;
  overflow: hidden;
}

.teleport-persona::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teleport-card-gradient);
  opacity: 0.6;
  border-radius: 15px;
  border: 1px solid rgba(160, 182, 217, 0.15);
  z-index: 0;
}

.teleport-persona > * {
  position: relative;
  z-index: 1;
}

.teleport-persona.active {
  display: grid;
}

.teleport-persona__title {
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: #8584F5;
  margin-bottom: 32px;
}

.teleport-persona__challenge,
.teleport-persona__solution {
  margin-bottom: 24px;
}

.teleport-persona__challenge strong,
.teleport-persona__solution strong {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.teleport-persona__challenge p,
.teleport-persona__solution p {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  line-height: 150%;
  color: #A0B6D9;
  margin: 0;
}

.teleport-persona__benefits {
  list-style: none;
  padding: 64px 0 0 0;
  margin: 0;
}

.teleport-persona__benefits li {
  position: relative;
  padding-left: 32px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  line-height: 200%;
  color: #A0B6D9;
}

.teleport-persona__benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background: var(--teleport-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: 700;
}

/* ========== USE CASES ========== */
.teleport-usecases__grid {
  max-width: 1352px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.teleport-usecase {
  position: relative;
  border-radius: 15px;
  padding: 32px;
  text-align: center;
  overflow: hidden;
}

.teleport-usecase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teleport-card-gradient);
  opacity: 0.6;
  border-radius: 15px;
  border: 1px solid rgba(160, 182, 217, 0.15);
  z-index: 0;
}

.teleport-usecase > * {
  position: relative;
  z-index: 1;
}

.teleport-usecase__icon {
  width: 60px;
  height: 60px;
  background: rgba(90, 65, 224, 0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #F4F6FB;
}

.teleport-usecase__title {
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: #F4F6FB;
  margin-bottom: 12px;
}

.teleport-usecase__text {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  line-height: 120%;
  color: #A0B6D9;
}

/* ========== PIPELINE ========== */
.teleport-pipeline {
  max-width: 1352px;
  margin: 0 auto;
  padding: 48px 0;
  text-align: center;
}

.teleport-pipeline__title {
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 110%;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  margin-bottom: 48px;
}

.teleport-pipeline__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  position: relative;
}

.teleport-pipeline__step {
  background: rgba(68, 51, 160, 1);
  padding: 24px;
  border-radius: 10px;
  min-width: 90px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.teleport-pipeline__step-name {
  display: block;
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
}

.teleport-pipeline__step-label {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.teleport-pipeline__arrow {
  font-size: 24px;
  color: rgba(133, 132, 245, 0.6);
}

.teleport-pipeline__text {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  line-height: 120%;
  color: #A0B6D9;
}

/* ========== CONTACT FORM ========== */
.teleport-contact__form-card {
  max-width: 664px;
  margin: 0 auto;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.teleport-contact__form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(459.76% 431.16% at 27.94% -293.06%, rgba(113, 102, 238, 1) 0%, rgba(36, 28, 74, 1) 100%);
  opacity: 0.5;
  border-radius: 15px;
  border: 1px solid rgba(160, 182, 217, 0.15);
  z-index: 0;
}

/* Override contact.css absolute positioning for Teleport page */
.teleport-contact__form-card .contact__form {
  position: relative;
  padding: 45px;
  z-index: 1;
}

.teleport-contact__form-card .contact__label {
  font-size: 18px;
}

.teleport-contact__form-card .contact__input,
.teleport-contact__form-card .contact__textarea {
  width: 100%;
  background: rgba(18, 24, 38, 0.6);
  border-color: rgba(84, 59, 199, 0.3);
}

.teleport-contact__form-card .contact__input:focus,
.teleport-contact__form-card .contact__textarea:focus {
  border-color: rgba(133, 132, 245, 0.6);
}

.teleport-contact__form-card .contact__submit {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  margin-top: 8px;
  background: var(--teleport-gradient);
  color: #121826;
  box-shadow: 0px 10px 25px rgba(84, 59, 199, 0.3);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .teleport-hero {
    padding: 160px 40px 80px;
  }

  .teleport-hero__title {
    font-size: 80px;
  }

  .teleport-hero__description {
    font-size: 24px;
  }

  .teleport-tabs {
    top: 64px;
    padding: 0 40px;
  }

  .teleport-section {
    padding: 80px 40px;
    scroll-margin-top: 145px;
  }

  .teleport-section__title {
    font-size: 40px;
  }

  .teleport-section__kicker {
    font-size: 22px;
  }

  .teleport-pipeline__title {
    font-size: 40px;
  }

  .teleport-vision__grid {
    grid-template-columns: 1fr;
  }

  .teleport-vision__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .teleport-defis__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .teleport-usecases__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .teleport-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .teleport-features__card {
    padding: 30px;
  }

  .teleport-persona {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .teleport-persona__benefits {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .teleport-hero {
    padding: 140px 20px 60px;
  }

  .teleport-hero__title {
    font-size: 48px;
  }

  .teleport-hero__description {
    font-size: 18px;
  }

  .teleport-hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .teleport-tabs {
    padding: 0 20px;
  }

  .teleport-tabs__container {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .teleport-tabs__container::-webkit-scrollbar {
    display: none;
  }

  .teleport-tabs__item {
    flex-shrink: 0;
  }

  .teleport-section {
    padding: 60px 20px;
  }

  .teleport-section__title {
    font-size: 32px;
  }

  .teleport-section__kicker {
    font-size: 18px;
  }

  .teleport-section__cta h3 {
    font-size: 24px;
  }

  .teleport-pipeline__title {
    font-size: 32px;
  }

  .teleport-vision__features {
    grid-template-columns: 1fr;
  }

  .teleport-defis__grid {
    grid-template-columns: 1fr;
  }

  .teleport-features__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .teleport-features__card {
    padding: 24px;
  }

  .teleport-features__card h3 {
    font-size: 18px;
  }

  .teleport-features__card p {
    font-size: 15px;
  }

  .teleport-personas__wrapper {
    padding: 24px;
  }

  .teleport-personas__tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
  }

  .teleport-personas__tab {
    flex-shrink: 0;
  }

  .teleport-persona {
    padding: 32px;
  }

  .teleport-usecases__grid {
    grid-template-columns: 1fr;
  }

  .teleport-pipeline__steps {
    flex-direction: column;
  }

  .teleport-pipeline__arrow {
    transform: rotate(90deg);
  }
}

/* ========== FEATURES ========== */
.teleport-features__grid {
  max-width: 1352px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.teleport-features__card {
  position: relative;
  padding: 32px;
  border-radius: 15px;
  text-align: center;
  overflow: hidden;
}

.teleport-features__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teleport-card-gradient);
  opacity: 0.6;
  border-radius: 15px;
  border: 1px solid rgba(160, 182, 217, 0.15);
  z-index: 0;
}

.teleport-features__card > * {
  position: relative;
  z-index: 1;
}

.teleport-features__icon {
  width: 60px;
  height: 60px;
  background: rgba(90, 65, 224, 0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #F4F6FB;
}

.teleport-features__card h3 {
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: #F4F6FB;
  margin-bottom: 12px;
}

.teleport-features__card p {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  line-height: 120%;
  color: #A0B6D9;
}

/* ========== HANDS-ON LAB ========== */
.teleport-handson {
  position: relative;
  overflow: hidden;
}

.teleport-handson__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(84, 59, 199, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.teleport-handson__grid {
  max-width: 1352px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.teleport-handson__card {
  display: block;
  text-decoration: none;
  position: relative;
  border-radius: 15px;
  padding: 32px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.teleport-handson__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teleport-card-gradient);
  opacity: 0.6;
  border-radius: 15px;
  border: 1px solid rgba(160, 182, 217, 0.15);
  z-index: 0;
}

.teleport-handson__card > * {
  position: relative;
  z-index: 1;
}

.teleport-handson__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(84, 59, 199, 0.25);
}

.teleport-handson__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.teleport-handson__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.teleport-handson__icon--sysops {
  background: linear-gradient(135deg, #7166EE 0%, #543BC7 100%);
  box-shadow: 0 8px 20px rgba(113, 102, 238, 0.35);
}

.teleport-handson__icon--devops {
  background: linear-gradient(135deg, #8584F5 0%, #543BC7 100%);
  box-shadow: 0 8px 20px rgba(133, 132, 245, 0.35);
}

.teleport-handson__edition {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(160, 182, 217, 0.6);
}

.teleport-handson__card-title {
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: #F4F6FB;
  margin: 0;
}

.teleport-handson__card-text {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  line-height: 120%;
  color: #A0B6D9;
  margin-bottom: 20px;
}

.teleport-handson__checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.teleport-handson__checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: #A0B6D9;
  margin-bottom: 8px;
}

.teleport-handson__check {
  color: #8584F5;
  font-weight: 700;
}

.teleport-handson__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: rgba(160, 182, 217, 0.6);
}

/* Bottom CTA */
.teleport-handson__cta {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 32px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.teleport-handson__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teleport-card-gradient);
  opacity: 0.6;
  border-radius: 15px;
  border: 1px solid rgba(160, 182, 217, 0.15);
  z-index: 0;
}

.teleport-handson__cta > * {
  position: relative;
  z-index: 1;
}

.teleport-handson__cta-text {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #F4F6FB;
  margin-bottom: 24px;
}

.teleport-handson__cta-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.teleport-handson__cta-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: #A0B6D9;
}

/* Hands-on responsive */
@media (max-width: 768px) {
  .teleport-handson__grid {
    grid-template-columns: 1fr;
  }

  .teleport-handson__card {
    padding: 24px;
  }

  .teleport-handson__card-text {
    font-size: 15px;
  }

  .teleport-handson__cta {
    padding: 24px 20px;
  }

  .teleport-handson__cta-text {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .teleport-handson__cta .btn-primary--large {
    padding: 14px 32px;
    font-size: 15px;
    width: 100%;
  }

  .teleport-handson__cta-badges {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }

  .teleport-handson__cta-badges span {
    font-size: 13px;
  }
}
