.optico-faq-section {
  background: var(--opco-bg);
  padding: var(--opco-spacing-section) 0;
}

.optico-faq-container {
  max-width: 1400px;  /* WIDER! */
  margin: 0 auto;
  padding: 0 2rem;
}

.optico-faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.optico-faq-header h2 { 
  margin-bottom: 0.5rem; 
  text-transform: none;
}
.optico-faq-subheadline {
  margin-bottom: 0;
  color: var(--opco-text-secondary);
  font-family: var(--opco-font-main);
  text-transform: none;
}

.optico-faq-groups {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-start;
}
.optico-faq-col {
  flex: 1 1 0px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.optico-faq-group {
  background: var(--opco-bg-card);
  border-radius: var(--opco-border-radius);
  box-shadow: var(--opco-shadow);
  padding: 1.5rem; /* UNIFIED! */
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0; /* No gap between items */
}

.optico-faq-group-label {
  display: inline-block;
  background: var(--opco-accent-alt);
  color: var(--opco-primary);
  border-radius: 999px;
  padding: 0.42em 1.35em;
  font-family: var(--opco-font-main);
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 1rem; /* NEW */
}

.optico-faq-item {
  border-radius: 18px;
  transition: box-shadow 0.2s, border 0.2s;
  margin-bottom: 0.6em;
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
}

.optico-faq-item.open {
  border: 2px solid var(--opco-accent);
  background: #fff;
  box-shadow: 0 0 0 3px #f0e9d3;
  z-index: 2;
}
.optico-faq-item.pulse {
  animation: optico-pulse 0.42s;
}
@keyframes optico-pulse {
  0% { box-shadow: 0 0 0 3px #f0e9d3, 0 0 0 0 var(--opco-accent); }
  55% { box-shadow: 0 0 0 7px var(--opco-accent), 0 0 0 0 #f0e9d3; }
  100% { box-shadow: 0 0 0 3px #f0e9d3; }
}

/* QUESTION BUTTON */
.optico-faq-question {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--opco-font-headings);
  font-size: var(--opco-font-size-h4);
  color: var(--opco-link);
  font-weight: 600;
  padding: 1.05em 1.3em 1.05em 1.2em;
  border-radius: 18px;
  margin: 0;
  transition: color 0.2s;
  box-sizing: border-box;
  min-height: 46px;
  text-align: left;
}

/* Ensure h4 is always left aligned and correct color */
.optico-faq-question h4 {
  font-size: var(--opco-font-size-h4);
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  line-height: 1.28;
  text-align: left;
  transition: color 0.2s;
}

.optico-faq-item.open .optico-faq-question,
.optico-faq-item.open .optico-faq-question h4,
.optico-faq-question:focus,
.optico-faq-question:focus h4 {
  color: var(--opco-accent);
}

.optico-faq-item:not(.open) .optico-faq-question,
.optico-faq-item:not(.open) .optico-faq-question h4 {
  color: var(--opco-link);
  transition: color 0.2s;
}

/* ARROW ICON */
.optico-faq-arrow {
  display: inline-block;
  margin-left: 1em;
  width: 1.8em;
  height: 1.8em;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.26s cubic-bezier(.46,1.48,.56,1), color 0.18s;
}
.optico-faq-arrow:after {
  content: '';
  display: block;
  width: 1.1em;
  height: 1.1em;
  border-right: 3px solid var(--opco-link);
  border-bottom: 3px solid var(--opco-link);
  border-radius: 0 0 5px 0;
  transform: rotate(45deg);
  position: absolute;
  top: 11px;
  left: 7px;
  transition: border 0.18s;
}
.optico-faq-item.open .optico-faq-arrow:after {
  border-right: 3px solid var(--opco-accent);
  border-bottom: 3px solid var(--opco-accent);
}
.optico-faq-item.open .optico-faq-arrow {
  transform: rotate(180deg);
}

/* FAQ Answer (Compact) */
.optico-faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.38s cubic-bezier(.42,0,.58,1), opacity 0.22s;
  pointer-events: none;
  padding: 0 1.35em;
  background: none;
  box-sizing: border-box;
  margin-top: 0.22em;
  text-align: left;
}

.optico-faq-item.open .optico-faq-answer {
  max-height: 700px;
  opacity: 1;
  margin-top: 0.18em;
  pointer-events: auto;
  padding-bottom: 1em;
}

.optico-faq-answer p {
  font-size: var(--opco-font-size-p);
  color: var(--opco-text-secondary);
  margin: 0;
  line-height: 1.65;
  font-family: var(--opco-font-main);
  text-align: left;
}

.optico-faq-item a {
  color: var(--opco-link);
  text-decoration: underline;
}
.optico-faq-item a:hover {
  color: var(--opco-link-hover);
}

/* Mobile Styles */
@media (max-width: 950px) {
  .optico-faq-groups {
    flex-direction: column;
    gap: 2rem;
  }
  .optico-faq-col {
    gap: 2rem;
  }
  .optico-faq-group {
    padding: 1.4rem 1rem 1.1rem 1rem;
  }
  .optico-faq-section {
    padding: 2.2rem 0 1.5rem 0;
  }
  .optico-faq-container {
    padding: 0 1rem;
    max-width: 100vw;
  }
  .optico-faq-question {
    font-size: 1em;
    padding: 1em 1.1em 1em 1.08em;
    min-height: 40px;
  }
  .optico-faq-answer {
    padding: 0 1.1em;
    padding-bottom: 0.7em;
  }
}
