/* Product Hero Section */
.product-hero {
  background: #249bcd;
  padding: 5rem 1rem 4rem;
  position: relative;
  overflow: hidden;
}

.grid-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.grid-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

@media (min-width: 768px) {
  .product-hero {
    padding: 7rem 1rem 6rem;
  }
}

@media (min-width: 1024px) {
  .product-hero {
    padding: 9rem 1rem 8rem;
  }
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) {
  .product-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.product-hero-content {
  color: white;
  text-align: center;
}

@media (min-width: 1024px) {
  .product-hero-content {
    text-align: left;
  }
}

.product-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #fcd34d;
  background: #fcd34d;
  border-radius: 9999px;
  color: #01193f;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .product-badge {
    font-size: 0.875rem;
  }
}

.product-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: white;
}

@media (min-width: 640px) {
  .product-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .product-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .product-title {
    font-size: 3.75rem;
  }
}

.product-description {
  font-size: 1rem;
  line-height: 1.625;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .product-description {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .product-description {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: white;
  color: #01193f;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: all 0.3s;
}

@media (min-width: 640px) {
  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

.cta-button:hover {
  background: #fcd34d;
}

.cta-icon {
  margin-left: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
}

.platform-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .platform-badges {
    justify-content: flex-start;
  }
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
}

.platform-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.product-hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

@media (min-width: 640px) {
  .product-hero-image {
    height: 500px;
  }
}

@media (min-width: 768px) {
  .product-hero-image {
    height: 600px;
  }
}

.glow-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(56, 189, 248, 0.2),
    rgba(1, 25, 63, 0.2)
  );
  border-radius: 1.5rem;
  filter: blur(48px);
}

.product-hero-image img {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Features Section */
.features-section {
  padding: 4rem 1rem;
  background-color: rgb(249, 250, 251);
}

@media (min-width: 640px) {
  .features-section {
    padding: 5rem 1rem;
  }
}

@media (min-width: 768px) {
  .features-section {
    padding: 6rem 1rem;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #01193f;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1rem;
  color: rgb(75, 85, 99);
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .section-description {
    font-size: 1.125rem;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgb(229, 231, 235);
  transition: all 0.3s;
}

@media (min-width: 640px) {
  .feature-card {
    padding: 2rem;
  }
}

.feature-card:hover {
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #38bdf8, #01193f);
  border-radius: 0.75rem;
  color: white;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

@media (min-width: 640px) {
  .feature-icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 640px) {
  .feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #01193f;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .feature-title {
    font-size: 1.25rem;
  }
}

.feature-description {
  font-size: 0.875rem;
  color: rgb(75, 85, 99);
  line-height: 1.625;
}

@media (min-width: 640px) {
  .feature-description {
    font-size: 1rem;
  }
}

/* User Benefits Section */
.user-benefits-section {
  padding: 2rem 1rem;
  background: white;
}

@media (min-width: 640px) {
  .user-benefits-section {
    padding: 3rem 1rem;
  }
}

@media (min-width: 768px) {
  .user-benefits-section {
    padding: 4rem 1rem;
  }
}

.section-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.5rem 1rem;
  border: 1px solid #38bdf8;
  background: rgb(240, 249, 255);
  border-radius: 9999px;
  color: rgb(3, 105, 161);
  font-size: 0.875rem;
  font-weight: 500;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgb(229, 231, 235);
  text-align: center;
  transition: all 0.3s;
}

.benefit-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.user-benefit {
  background: linear-gradient(to bottom right, rgb(240, 249, 255), white);
  border-color: rgb(224, 242, 254);
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  color: white;
  margin: 0 auto 1rem;
}

.user-icon {
  background: #38bdf8;
}

.benefit-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.benefit-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #01193f;
  margin-bottom: 0.5rem;
}

.benefit-description {
  font-size: 0.875rem;
  color: rgb(75, 85, 99);
  line-height: 1.625;
}

/* Institution Benefits Section */
.institution-benefits-section {
  padding: 2rem 1rem;
  background: white;
}

@media (min-width: 640px) {
  .institution-benefits-section {
    padding: 3rem 1rem;
  }
}

@media (min-width: 768px) {
  .institution-benefits-section {
    padding: 4rem 1rem;
  }
}

.institution-benefit {
  background: linear-gradient(to bottom right, rgba(1, 25, 63, 0.05), white);
  border-color: rgba(1, 25, 63, 0.1);
}

.institution-icon {
  background: #01193f;
}

/* CTA Section */
.cta-section {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom right, #38bdf8, #45abd5, #01193f);
}

@media (min-width: 640px) {
  .cta-section {
    padding: 5rem 1rem;
  }
}

@media (min-width: 768px) {
  .cta-section {
    padding: 6rem 1rem;
  }
}

.cta-main-card {
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 640px) {
  .cta-main-card {
    padding: 3rem;
  }
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #01193f;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

.cta-description {
  font-size: 1rem;
  color: rgb(75, 85, 99);
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .cta-description {
    font-size: 1.125rem;
  }
}

.cta-button-large {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(to right, #38bdf8, #01193f);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: opacity 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .cta-button-large {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
  }
}

.cta-button-large:hover {
  opacity: 0.9;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: #38bdf8;
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
}
