html {
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  overflow-y: scroll;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

 
/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  background-image: url("../img/cpuHome.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  transition: background-position 0.1s ease-out;
}


/* ===== HERO CONTENT ===== */
.hero-content {
  position: relative;
  z-index: 3;
  padding-left: 60px;
  max-width: 800px;
  opacity: 0;
  animation: fadeSlideUp 1s ease-out forwards 0.5s;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-family: "montserrat", sans-serif;
  line-height: 1.05;
  margin: 0 0 12px;
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeSlideUp 1s ease-out forwards 0.7s;
}

.hero-content p {
  margin: 40px 0 40px;
  font-family: "proxima-n-w01-reg", sans-serif;
  opacity: 0;
  font-size: 24px;
  animation: fadeSlideUp 1s ease-out forwards 0.9s;
}

/* ===== BUTTON ===== */
.hero-buttons {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 18px 28px;
  border-radius: 28px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
}

.btn.primary {
  background: #3a6afd;
  color: #fff;
  font-size: 16px;
  font-weight: 100;
  font-family: "proxima-n-w01-reg", sans-serif;
}

.btn.secondary {
  background: #242834;
  color: #fff;
  font-size: 16px;
  font-weight: 100;
  font-family: "proxima-n-w01-reg", sans-serif;
}

/* ===== FEATURE ROW ===== */
.feature-row {
  position: absolute;
  left: 60px;
  right: 60px;
  bottom: 30px;
  z-index: 4;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
}

.feature {
  background: #242834;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  min-height: 120px;
  flex: 1;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

/* ===== BAR HIỆU ỨNG DÀI TỪ TRÊN XUỐNG ===== */
.feature .bar {
  display: inline-block;
  width: 8px;
  height: 0;
  background: linear-gradient(to bottom, #3a6afd, #1e40ff);
  border-radius: 4px;
  margin-right: 16px;
  flex-shrink: 0;
  opacity: 0;
  transform-origin: top; /* điểm bắt đầu ở trên */
  animation: growBarDown 0.8s ease-out forwards;
}

/* ===== TEXT ===== */
.feature .feature-text {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.25;
  font-family: "Montserrat", sans-serif;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s ease-out forwards;
}

/* ===== DELAY HIỆU ỨNG THEO THỨ TỰ ===== */
.feature:nth-child(1) .bar { animation-delay: 1s; }
.feature:nth-child(1) .feature-text { animation-delay: 1.3s; }

.feature:nth-child(2) .bar { animation-delay: 1.4s; }
.feature:nth-child(2) .feature-text { animation-delay: 1.7s; }

.feature:nth-child(3) .bar { animation-delay: 1.8s; }
.feature:nth-child(3) .feature-text { animation-delay: 2.1s; }

.feature:nth-child(4) .bar { animation-delay: 2.2s; }
.feature:nth-child(4) .feature-text { animation-delay: 2.5s; }

/* ===== KEYFRAMES ===== */
@keyframes fadeSlideUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Thanh bar dài dần từ TRÊN XUỐNG */
@keyframes growBarDown {
  0% {
    height: 0;
    opacity: 0;
    transform: scaleY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    height: 65px;
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .feature-row {
    left: 20px;
    right: 20px;
    gap: 12px;
    bottom: 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .feature {
    flex-direction: row;
  }

  .hero-content {
    padding-left: 24px;
    padding-right: 24px;
    max-width: none;
  }
}

.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden; /* quan trọng */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  background: #000;
  
}

.video-section .video-bg {
  position: absolute;
  inset: 0;
  width: 100%;     /* rộng hơn để trượt ngang */
  height: 100%;
  object-fit: cover;
  z-index: 1;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Box góc trên trái */
.video-top-left-box {
  position: absolute;
  top: 0;
  left: 60px;
  background: #242834;
  color: #fff;
  font-size: 18px;
  min-width: 340px;
  padding: 15px 20px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  z-index: 4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-40px);
  animation: slideDownBox 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards 1s;
}

/* Nội dung chữ + nút */
.video-content {
  position: relative;
  z-index: 3;
  padding-left: 60px;
  max-width: 820px;
  opacity: 0;
  transform: translateX(-60px);
  animation: fadeSlideRight 1.2s ease-out forwards 1.8s;
}

.video-content p {
  margin-bottom: 30px;
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  opacity: 0.9;
  font-weight: 400;
  text-align: justify;
}

.video-buttons {
  display: flex;
  gap: 12px;
  opacity: 0;
  transform: translateX(-60px);
  animation: fadeSlideRight 1.2s ease-out forwards 2.2s;
}

/* Nút */
.btn {
  padding: 16px 28px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #3a6afd;
  color: #fff;
}
.btn.primary:hover {
  background: #3153d9;
}

/* ========== Animation ========== */

/* Video fade in */
@keyframes fadeInVideo {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

/* Overlay fade */
@keyframes fadeOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Box rơi từ trên xuống */
@keyframes slideDownBox {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  60% {
    opacity: 1;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Nội dung xuất hiện từ trái qua phải */
@keyframes fadeSlideRight {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .video-top-left-box {
    left: 24px;
    font-size: 16px;
    min-width: 240px;
  }

  .video-content {
    padding: 0 24px;
    max-width: none;
  }

  .video-content p {
    font-size: 1.2rem;
  }

  .video-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

.why-choose-section {
  position: relative;
  background-image: url("../img/dienHome.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  transition: background-position 0.1s ease-out;
}


/* --- Grid chính --- */
.why-inner {
  max-width: 700px;
  margin-left: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: start;
}

.why-item {
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 300px;
   opacity: 0;        
  transform: translateY(30px);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.why-item.visible {
  animation: fadeSlideUpItem 0.8s ease forwards;
}

.why-item:hover {
  transform: translateY(-8px);
}

/* Icon đều nhau, màu trắng */
.icon {
  width: 60px;
  height: 60px;
  border: 2px solid white;
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.icon-QR {
  width: 60px;
  height: 60px;
  border: 2px solid white;
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon img {
  width: 70%;
  height: 70%;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

/* Tiêu đề & nội dung */
.why-item h3 {
  font-size: 26px;
  margin: 10px 0 25px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: justify;
  font-family: "Montserrat", sans-serif; /* đổi font */
  min-height: calc(1.3em * 2);
}

.why-item p {
  font-size: 18px;
  line-height: 1.8;
  font-family: "proxima", sans-serif;
  font-weight: 100;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left; /* 🟢 dòng cuối căn trái, không bị giãn chữ */
  hyphens: auto;
  margin: 0 auto;
  max-width: 100%;
}

@keyframes fadeSlideUpItem {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* 🌐 Responsive cho Tablet và Mobile */
@media (max-width: 1024px) {
  .why-choose-section {
    padding: 80px 40px;
  }

  .why-inner {
    margin-left: 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr; /* 👉 1 cột khi mobile */
    gap: 20px;
  }

  .why-item {
    min-height: auto; /* bỏ fix chiều cao */
    padding: 16px;
  }

  .why-item h3 {
    min-height: auto;
    font-size: 1rem;
  }

  .why-item p {
    text-align: left; /* 👈 mobile đọc dễ hơn */
    max-width: 100%;
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .video-top-left-box {
    top: 20px;
    left: 20px;
    padding: 10px 16px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .why-choose-section {
    padding: 60px 20px;
  }

  .icon,
  .icon-QR {
    width: 50px;
    height: 50px;
  }

  .why-item h3 {
    font-size: 1.5rem;
  }

  .why-item p {
    font-size: 1rem;
  }
}

/* --- Phần sản phẩm --- */
.top-products-section {
  position: relative;
  background: #0f1116; /* nền tối sang trọng */
  color: #fff;
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Grid 3 cột */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
/* Từng sản phẩm */
.product-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
    opacity: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.1);
}

.product-item.visible {
  animation: fadeSlideUpProduct 0.8s ease forwards;
}

.product-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.product-item:hover img {
  transform: scale(1.05);
}

/* Hiệu ứng phủ vòng cung */
.product-image .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at bottom center,
    rgba(0, 150, 255, 0.35) 0%,
    rgba(0, 150, 255, 0.15) 35%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 12px;
  pointer-events: none;
}

.product-item:hover .overlay {
  opacity: 1;
}

.product-item h3 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 16px;
  font-family: "Montserrat", sans-serif;
}

/* Nút xem thêm */
.view-more-btn {
  display: inline-block;
  margin: 60px auto 0; /* Căn giữa */
  background: linear-gradient(90deg, #007bff, #00c8ff);
  border: none;
  color: white;
  padding: 12px 36px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(0, 200, 255, 0.25);
}

.view-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 200, 255, 0.4);
  background: linear-gradient(90deg, #00c8ff, #007bff);
}

/* 🌐 Responsive */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .top-products-section {
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-image img {
    height: 220px;
  }

  .top-products-section {
    padding: 60px 20px;
  }

  .view-more-btn {
    padding: 10px 28px;
    font-size: 1rem;
  }
}

@keyframes fadeSlideUpProduct {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-section {
  background-color: #242834;
  color: #fff;
  padding: 60px 80px;
  text-align: center;
}

.testimonial-title {
  font-size: 1.8rem;
  text-align: left;
  margin-bottom: 40px;
  font-family: "proxima-n-w01-reg", sans-serif;
}

.testimonial-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.testimonial-card {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.testimonial-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.quote-line {
  display: inline-block;
  width: 15px;
  height: 100%;
  min-height: 100px;
  background-color: #3a6afd;
  border-radius: 2px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
  margin: 0;
  text-align: justify;
  font-family: "proxima-n-w01-reg", sans-serif;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* Tổng thể */
.sports-section {
  background-color: #060b12;
  color: #fff;
  padding: 60px 40px;
  text-align: center;
}

.sports-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 100px;
  font-family: "Montserrat", sans-serif;
}

/* Slider tổng */
.sports-slider-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
}

.sports-viewport {
  overflow: hidden;
  width: 100%;
}

.sports-gallery {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

/* Mỗi ảnh chiếm 1 phần màn hình (4 ảnh = 25% - khoảng trống) */
.sports-item {
  flex: 0 0 calc(25% - 15px);
  border-radius: 16px;
  overflow: hidden;
  background: #0b0f15;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Ảnh vừa màn hình, không bị vuông */
.sports-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 16px;
}

/* Hover có ánh xanh mờ */
.sports-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 150, 255, 0);
  transition: background 0.3s ease;
  border-radius: 16px;
}

.sports-item:hover::after {
  background: rgba(0, 150, 255, 0.25);
}

.sports-item:hover img {
  transform: scale(1.05);
}

/* Nút điều hướng */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 28px;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s, background 0.2s;
}

/* Hiện nút khi hover container */
.sports-slider-container:hover .slider-btn {
  opacity: 1;
}

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.75);
}

.prev-btn {
  left: 10px;
}
.next-btn {
  right: 10px;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .sports-item {
    flex: 0 0 calc(33.333% - 15px);
  }
}

@media (max-width: 768px) {
  .sports-item {
    flex: 0 0 calc(50% - 10px);
  }

  .sports-item img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 480px) {
  .sports-item {
    flex: 0 0 100%;
  }
}

.partner-section {
  position: relative;
  background-color: #060b12;
  color: #fff;
  text-align: center;
  padding: 150px 40px;
  min-height: 40vh;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- Lưới logo --- */
.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  gap: 0;
}

/* --- Ô logo --- */
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00060f;
  border: 1px solid rgba(255, 255, 255, 0.15);
  height: 100px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpLogo 0.8s ease-out forwards;
}

/* --- Ảnh logo --- */
.partner-item img {
  max-width: 70%;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.3s ease;
}

.partner-item:hover {
  background-color: #111826;
  transform: scale(1.05);
  z-index: 2;
}

.partner-item:hover img {
  filter: grayscale(0%) brightness(1);
}


@keyframes fadeUpLogo {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.partner-item:nth-child(1) {
  animation-delay: 0.3s;
}
.partner-item:nth-child(2) {
  animation-delay: 0.5s;
}
.partner-item:nth-child(3) {
  animation-delay: 0.7s;
}
.partner-item:nth-child(4) {
  animation-delay: 0.9s;
}
.partner-item:nth-child(5) {
  animation-delay: 1.1s;
}

/* Responsive */
@media (max-width: 768px) {
  .partner-item {
    height: 100px;
  }
}

@media (max-width: 480px) {
  .partner-item {
    height: 80px;
  }
  .partner-item img {
    max-height: 40px;
  }
}


.faq-section {
  position: relative;
  background-image: url("../img/FAQ.avif");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 60px;
  overflow: hidden;
}

.faq-overlay {
  padding: 60px 0;
}

/* Container căn trái */
.faq-container {
  max-width: 900px;
  margin: 0;
  padding-left: 60px;
  text-align: left;
}

/* Header row: subtitle + search ở 2 đầu */
.faq-header-row {
  display: flex;
  justify-content: space-between; /* subtitle trái, search phải */
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.faq-header-row .faq-subtitle {
  margin: 0;
  font-size: 1.2rem;
  color: #ffffff;
    font-family: "proxima-n-w01-reg", sans-serif;
}

/* Search */
.faq-header-row .faq-search {
  flex: 0 0 250px; /* cố định 250px */
  position: relative;
}

.faq-header-row .faq-search input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1rem;
  padding: 10px 36px 10px 0;
  outline: none;
}

.faq-header-row .faq-search input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.faq-header-row .faq-search .search-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Tabs */
.faq-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.tab {
  background: transparent;
  border: none;
  color: #ccc;
  font-weight: 500;
  cursor: pointer;
  padding-bottom: 8px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.tab.active {
  color: #fff;
  border-bottom: 2px solid #2962ff;
}

/* FAQ Items */
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.faq-title {
  font-weight: 400;
  margin-bottom: 10px;
  font-size: clamp(2rem, 2.5vw, 4rem);
  font-family: "montserrat", sans-serif;
}

.faq-question {
  padding: 16px 24px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
    font-family: "proxima-n-w01-reg", sans-serif;
}

.faq-question::after {
  content: "▾";
  position: absolute;
  right: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  padding: 0 24px;
    font-family: "proxima-n-w01-reg", sans-serif;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding: 16px 24px 24px;
}

/* Hover */
.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .faq-header-row .faq-search {
    width: 100%;
  }
}
