@font-face {
  font-family: "PPSupplyMono";
  src: url("https://assets.codepen.io/7558/PPSupplyMono-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  src: url("https://fonts.cdnfonts.com/css/pp-neue-montreal") format("woff2");
  font-family: "PP Neue Montreal", sans-serif;
  font-weight: 400;
}

@font-face {
  font-family: "CustomFont";
  src: url("../../fonts/LT_55850.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fafafa;
  font-family: "PP Neue Montreal", sans-serif;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  text-transform: uppercase;
  font-size: 12px;
  color: #1a1a1a;
}

.container {
  width: 100%;
  padding: 2rem;
  padding-bottom: 0;
  position: relative;
  min-height: 100vh;
}

.header {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  font-size: 24px;
  color: #1a1a1a;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
  position: relative;
  cursor: pointer;
  padding: 0;
  display: inline-block;
  z-index: 1;
  font-size: 12px;
  opacity: 1;
  font-weight: 700;
}

.nav-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #1a1a1a;
  z-index: -1;
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #fafafa;
  mix-blend-mode: difference;
  opacity: 1;
}

/* FAQ Section */
.faq-section {
  margin-top: 2rem;
  margin-bottom: 12rem;
}

.faq-main-title {
  font-size: 300px;
  font-weight: normal;
  line-height: 0.9;
  margin-bottom: 4rem;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: normal;
  font-family: "CustomFont", sans-serif;
}

.faq-accordion {
  width: 100%;
}

.faq-accordion-item {
  border-top: 1px solid #1a1a1a;
  padding: 3rem 0;
}

.faq-accordion-item:last-child {
  border-bottom: 1px solid #1a1a1a;
}

.faq-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 2rem;
}

.faq-accordion-question {
  font-size: 32px;
  font-weight: bold;
  color: #1a1a1a;
  flex: 1;
}

.faq-accordion-icon {
  font-size: 48px;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1;
  flex-shrink: 0;
  will-change: transform;
}

.faq-accordion-content {
  overflow: hidden;
  will-change: height, opacity;
  height: 0;
  opacity: 0;
}

.faq-accordion-inner {
  padding-top: 2rem;
}

.faq-accordion-content p {
  font-size: 28px;
  line-height: 1.6;
  color: #1a1a1a;
  text-transform: none;
  font-weight: 700;
}

/* CTA Section */
.cta-section {
  position: relative;
  margin-top: 12rem;
  margin-left: -2rem;
  margin-right: -2rem;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 4rem 8rem;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.cta-section-title {
  position: absolute;
  top: 4rem;
  left: 4rem;
  z-index: 3;
  font-size: 120px;
  font-weight: normal;
  line-height: 0.9;
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: normal;
  font-family: "CustomFont", sans-serif;
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  color: #ffffff;
}

.cta-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 2.5rem;
  font-family: "PP Neue Montreal", sans-serif;
}

.cta-description {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 3rem;
  font-weight: 600;
  max-width: 650px;
}

.cta-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-link {
  font-size: 28px;
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
  color: #ffffff;
  transition: opacity 0.3s ease;
}

.cta-link:hover {
  opacity: 0.7;
}

.cta-link::after {
  display: none;
}

/* Contact Footer */
.contact-footer {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -2rem;
  margin-right: -2rem;
  padding: 3rem 4rem 8rem 4rem;
  background: #1a1a1a;
  color: #fafafa;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}

.footer-name {
  font-size: 16px;
  font-weight: bold;
  color: #fafafa;
}

.footer-role {
  font-size: 14px;
  color: #888;
}

.footer-right {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.footer-contact {
  font-size: 16px;
  font-weight: normal;
  color: #fafafa;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-contact:hover {
  opacity: 0.7;
}

.footer-contact::after {
  display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .faq-main-title {
    font-size: 64px;
  }

  .faq-accordion-item {
    padding: 2rem 0;
  }

  .faq-accordion-question {
    font-size: 20px;
  }

  .faq-accordion-icon {
    font-size: 28px;
  }

  .faq-accordion-content p {
    font-size: 16px;
  }

  .cta-section {
    height: auto;
    min-height: 70vh;
    padding: 2rem;
    justify-content: center;
  }

  .cta-section-title {
    position: relative;
    top: auto;
    left: auto;
    font-size: 48px;
    margin-bottom: 2rem;
  }

  .cta-title {
    font-size: 36px;
  }

  .cta-description {
    font-size: 14px;
  }

  .cta-links {
    gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-link {
    font-size: 18px;
  }

  .contact-footer {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 2rem;
    align-items: flex-start;
  }

  .footer-left {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .footer-right {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .footer-contact {
    font-size: 14px;
  }
}

