/* Tools */
.tools-grid {
  grid-auto-flow: row;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-auto-columns: unset;
  overflow: visible;
  scroll-snap-type: none;
  padding: 10px 30px 50px;
  gap: 1.2rem;
}

.tool-card {
  position: relative;
  isolation: isolate;
  min-height: 240px;
  padding: 24px;
  border-radius: 18px;
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  gap: 18px;

  background-color: rgb(39, 88, 208);
  overflow: hidden;
}

.tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: rgb(39, 88, 208);
  pointer-events: none;
}

.tool-card__body,
.tool-card__footer {
  position: relative;
  z-index: 1;
}

.tool-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tool-card__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.tool-card__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.tool-card__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
}

.tool-card__copy {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.tools-grid .tool-card .button {
  width: auto;
  height: auto;
  padding: 12px 16px;
  border-radius: 15px;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.tools-grid .tool-card .button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.tools-grid .tool-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

@media screen and (max-width: 900px) {
  .grid-content-container {
    padding-top: 40px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 0px;
  }

  .grid-content-600 {
    height: 600px;
  }

  .grid-content-600-text {
    height: auto;
  }

  .grid-content-650 {
  }

  .subscription-plans-grid .grid-content-650 {
    min-height: 640px;
  }

  .subscription-plans-grid .grid-top-bar1 {
    padding: 30px;
  }

  .subscription-plans-grid .subscription-price {
    font-size: 4.4rem;
  }

  .subscription-plans-grid .subscription-price-streaming {
    padding-top: 24px;
  }

  .plans-comparison-table tr:last-child > td:first-child,
  .plans-comparison-table tbody tr:last-child > td:first-child {
    border-bottom-left-radius: 0px !important;
  }

  .platform-title {
    font-size: 1.7rem;
    font-weight: 600;
  }
  .platform-subtitle {
    font-size: 1.2rem;
  }

  .subscription-subtitle {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .grid-content-title {
    font-size: 2rem;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    padding: 20px 24px 40px;
    gap: 1rem;
  }

  .tool-card {
    min-height: 220px;
    padding: 20px;
  }

  .tool-card__title {
    font-size: 1.2rem;
  }

  .hero-showcase {
    padding: 16px;
  }

  .hero-showcase-inner {
    min-height: 500px;
    border-radius: 18px;
    padding: 56px 20px;
    gap: 20px;
  }

  .hero-showcase-eyebrow {
    font-size: 1.1rem;
  }

  .hero-showcase-title {
    font-size: clamp(2.2rem, 11vw, 4rem);
  }

  .hero-showcase-copy {
    font-size: clamp(1rem, 5vw, 1.35rem);
    line-height: 1.3;
  }

  .hero-showcase-btn {
    min-height: 44px;
    padding: 0 18px;
    font-size: 1rem;
  }

  .video {
    width: 100%;
    height: 100%;
    aspect-ratio: 9 / 16;
    max-height: 700px;
  }

  .video-banner {
    height: 700px;
    max-height: none;
  }
}
