/* Components */
.nav {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav__container {
  height: 4rem;
}

.nav__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
}

.nav__button {
  padding: 0.5rem;
  border-radius: 0.375rem;
  border: none;
  background: transparent;
  color: var(--color-gray-600);
  cursor: pointer;
  transition: background-color 0.2s;
}

.nav__button:hover {
  background-color: var(--color-gray-100);
}

.hero {
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(to left, var(--color-primary), #000000);
  color: var(--color-primary-text);
}

.hero__title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero__title {
    font-size: 3rem;
    line-height: 3.5rem;
  }
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3.75rem;
    line-height: 4rem;
  }
}

.hero__role {
  color: var(--color-secondary);
  height: 5rem;
  display: block;
}

.hero__cursor {
  display: inline-block;
  width: 4px;
  height: 3.75rem;
  background-color: var(--color-secondary);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 0.75s step-end infinite;
}

.hero__description {
  max-width: 48rem;
  margin: 1.5rem auto;
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--color-gray-100);
}

@media (min-width: 640px) {
  .hero__description {
    font-size: 1.25rem;
    line-height: 1.625;
  }
}

@media (min-width: 768px) {
  .hero__description {
    font-size: 1.5rem;
    line-height: 1.75;
  }
}

.hero__cta {
  margin-top: 2.5rem;
}

.trust-features {
  padding: 6rem 0;
  background-color: var(--color-secondary);
}

.trust-features__title {
  text-align: center;
  font-size: 2.25rem;
  color: var(--color-gray-900);
  margin-bottom: 4rem;
}

.card {
  background: white;
  border-radius: 0.5rem;
  border: 1px solid var(--color-gray-200);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card__icon {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.5rem;
  color: var(--color-gray-900);
}

.card p {
  color: var(--color-gray-600);
}

.trust-features .card {
  text-align: center;
}

/* Video Section */
.video-section {
  padding: 1rem 0;
  background: #000;
}

/* Company-based Credibility Section */
.credibility {
  padding: 6rem 0;
  background-color: white;
  position: relative;
  width: 100%;
}

.credibility__title {
  text-align: center;
  font-size: 2.25rem;
  color: var(--color-gray-900);
  margin-bottom: 1rem;
}

.credibility__subtitle {
  text-align: center;
  color: var(--color-gray-900);
  font-size: 1.125rem;
  max-width: 48rem;
  margin: 0 auto 1rem;
}

/* Swiper Customization */
.company-placements {
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  position: relative;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-secondary);
}

.swiper-pagination-bullet {
  background: var(--color-primary);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
  will-change: transform;
}

/* Make all slides in a row the same height */
.swiper-slide {
  height: auto !important;
  transition: transform 0s linear !important;
}

/* NEW: Placement Card Style */
.placement-card {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
  padding: 1rem 0.2rem;
}

@media (min-width: 480px) {
  .placement-card {
    padding: 1.5rem 0.2rem;
  }
}

@media (min-width: 768px) {
  .placement-card {
    padding: 2rem 0.2rem;
  }
}

.placement-card__logo {
  margin: 0 auto 1rem;
  height: 60px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

@media (min-width: 480px) {
  .placement-card__logo {
    height: 70px;
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 768px) {
  .placement-card__logo {
    height: 80px;
    margin-bottom: 1.5rem;
  }
}

.company-logo {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.placement-card__role {
  color: var(--color-gray-900);
  font-size: 1rem;
  letter-spacing: 0.5px;
  line-height: 1.4;
  font-weight: 200;
}

@media (min-width: 480px) {
  .placement-card__role {
    font-size: 0.9rem;
  }
}

@media (min-width: 768px) {
  .placement-card__role {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .placement-card__role {
    font-size: 1.5rem;
  }
}

/* Original Company Card - kept for backwards compatibility */
.company-card {
  background: white;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-gray-200);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.company-card__logo {
  margin: 0 auto 1rem;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.company-card li {
  color: var(--color-gray-700);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-gray-200);
  font-size: 0.9375rem;
}

.company-card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Testimonial and CTA Section */
.testimonial-cta {
  padding: 6rem 0;
  background: linear-gradient(to left, var(--color-primary), #000000);
  color: var(--color-primary-text);
  text-align: center;
}

.testimonial {
  max-width: 64rem;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.testimonial__quote {
  position: relative;
}

.testimonial__quote-icon {
  color: var(--color-secondary);
  opacity: 0.3;
  margin-bottom: 1.5rem;
}

.testimonial__quote blockquote {
  font-size: 1.5rem;
  line-height: 1.75;
  font-weight: 300;
  margin: 0;
  padding: 0;
  font-style: italic;
  color: var(--color-secondary);
}

@media (min-width: 768px) {
  .testimonial__quote blockquote {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  opacity: 0.5;
}

.testimonial__author-info {
  text-align: center;
}

.testimonial__author-name {
  font-weight: 600;
  font-size: 1.125rem;
}

.testimonial__author-title {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.final-cta {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.final-cta h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .final-cta h2 {
    font-size: 3rem;
  }
}

.final-cta p {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--color-gray-300);
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .final-cta p {
    font-size: 1.25rem;
    line-height: 1.625;
  }
}

@media (min-width: 768px) {
  .final-cta p {
    font-size: 1.5rem;
    line-height: 1.75;
  }
}

.final-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: background-color 0.2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
}

.button--primary {
  background-color: var(--color-primary-text);
  color: var(--color-primary);
}

.button--primary:hover {
  background-color: var(--color-gray-200);
}

/* Footer */
.footer {
  color: var(--color-gray-400);
  padding: 2rem 0;
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  color: var(--color-gray-400);
  transition: color 0.2s;
}

.footer__social-link:hover {
  color: var(--color-gray-300);
}

.footer__copyright {
  font-size: 0.875rem;
}

/* Animations */
@keyframes blink {
  from, to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-10%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Marquee effect for truly continuous scrolling */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
