/* Future-Ready Technology Section Styles */

.future-ready-section {
  padding: 80px 20px;
  background-color: var(--bg);
}

.future-ready-heading-wrapper {
  margin: 0 auto 56px;
  max-width: 1200px;
}

.future-ready-heading {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--black);
  font-size: 60px;
  letter-spacing: 0;
  line-height: normal;
}

.future-ready-card {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  padding: 48px;
  border: 1px solid #e9eaeb;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(56, 81, 120, 0.1);
  background: var(--white);
}

.future-ready-card-content {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.future-ready-card-header {
  max-width: 594px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.future-ready-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 50px;
  background: linear-gradient(90deg, rgba(90, 203, 255, 1) 0%, rgba(58, 133, 255, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.future-ready-availability {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 32px;
  background: linear-gradient(90deg, rgba(90, 203, 255, 1) 0%, rgba(58, 133, 255, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.future-ready-subtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 117%;
  color: var(--black);
}

.future-ready-description {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  color: var(--grey);
}

.future-ready-image-wrapper {
  max-width: 425px;
  width: 100%;
  height: auto;
  display: block;
}

.future-ready-image {
  width: 100%;
  height: auto;
}

/* Responsive Styles */
@media (max-width: 1200px) and (min-width: 769px) {
  .future-ready-section {
    padding: 60px 20px;
  }

  .future-ready-heading-wrapper {
    margin-bottom: 40px;
  }

  .future-ready-heading {
    font-size: 48px;
  }

  .future-ready-card {
    width: 100%;
    padding: 32px;
  }

  .future-ready-title {
    font-size: 42px;
  }

  .future-ready-availability {
    font-size: 28px;
  }

  .future-ready-subtitle {
    font-size: 22px;
  }

  .future-ready-description {
    font-size: 17px;
  }

  .future-ready-image-wrapper {
    max-width: 380px;
  }
}

@media (max-width: 768px) and (min-width: 551px) {
  .future-ready-section {
    padding: 50px 20px;
  }

  .future-ready-heading-wrapper {
    margin-bottom: 32px;
  }

  .future-ready-heading {
    font-size: 36px;
  }

  .future-ready-card {
    width: 100%;
    padding: 24px;
  }

  .future-ready-card-content {
    flex-direction: column;
    gap: 24px;
  }

  .future-ready-card-header {
    max-width: 100%;
    order: 2;
  }

  .future-ready-title {
    font-size: 32px;
  }

  .future-ready-availability {
    font-size: 24px;
  }

  .future-ready-subtitle {
    font-size: 20px;
  }

  .future-ready-description {
    font-size: 16px;
  }

  .future-ready-image-wrapper {
    max-width: 360px;
    margin: 0 auto;
    order: 1;
  }
}

@media (max-width: 550px) {
  .future-ready-section {
    padding: 40px 20px;
  }

  .future-ready-heading-wrapper {
    margin-bottom: 24px;
  }

  .future-ready-heading {
    font-size: 24px;
  }

  .future-ready-card {
    width: 100%;
    padding: 16px;
  }

  .future-ready-card-content {
    flex-direction: column;
    gap: 20px;
  }

  .future-ready-card-header {
    max-width: 100%;
    order: 2;
  }

  .future-ready-title {
    font-size: 24px;
  }

  .future-ready-availability {
    font-size: 20px;
  }

  .future-ready-subtitle {
    font-size: 18px;
  }

  .future-ready-description {
    font-size: 16px;
  }

  .future-ready-image-wrapper {
    max-width: 100%;
    order: 2;
  }
}
