/* ----------------------------------------
   BASE
---------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #333;
}

/* ----------------------------------------
   HERO
---------------------------------------- */
#hero-header {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 360px;
  overflow: hidden;
  background: linear-gradient(135deg, #50b49a 0%, #4ebb91 45%, #4f8ac4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  pointer-events: none;
}

.hero-text h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3.5vw, 44px);
  letter-spacing: 6px;
  text-transform: uppercase;
}

/* ----------------------------------------
   FAQ SECTION
---------------------------------------- */
#faq-section {
  background: #fff;
  padding: 90px 24px 100px;
}

.faq-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-heading {
  text-align: center;
  margin-bottom: 14px;
}

.faq-heading h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #222;
  letter-spacing: 1px;
}

.faq-heading p {
  font-size: 15px;
  color: #888;
  margin-top: 10px;
  font-weight: 300;
}

/* ----------------------------------------
   FAQ GRID
---------------------------------------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 16px;
  margin-top: 52px;
  align-items: start;
}

@media (max-width: 720px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
/* ----------------------------------------
   ACCORDION ITEM
---------------------------------------- */
.faq-item {
  break-inside: avoid;
  border: 1.5px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  align-self: start;
}

.faq-item.open {
  border-color: #4ebb91;
  box-shadow: 0 4px 20px rgba(78, 187, 145, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 14px;
}

.faq-question span {
  font-size: 14.5px;
  font-weight: 500;
  color: #333;
  line-height: 1.45;
  flex: 1;
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.4s;
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: #888;
  transition: stroke 0.3s;
}

.faq-item.open .faq-icon {
  background: #4ebb91;
  border-color: #4ebb91;
  transform: rotate(180deg);
}

.faq-item.open .faq-icon svg {
  stroke: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 22px;
}

.faq-answer p {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  font-weight: 300;
  padding-top: 14px;
  padding-bottom: 20px;
  border-top: 1px solid #f0f0f0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}
/* ----------------------------------------
   FADE-UP ANIMATION
---------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}