/* FAQ page — mobile-first; hero via service-eficient.css */

.se-page--faq {
  font-family: var(--eet-font);
  color: var(--eet-ink-900);
  background: var(--eet-bg-soft);
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

.se-page--faq .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero: compact FAQ variant on shared .se-page .hero */
.se-page--faq .faq-hero-grid {
  grid-template-columns: 1fr;
  gap: 28px;
}

.se-page--faq .faq-hero-visual {
  min-height: 0;
}

.se-page--faq .faq-hero-search {
  margin-top: 8px;
  width: 100%;
}

.se-page--faq .faq-hero-search__field {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  min-height: var(--eet-tap, 48px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--eet-radius-sm);
  overflow: hidden;
}

.se-page--faq .faq-hero-search__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.65);
}

.se-page--faq .faq-hero-search__icon .eet-svg-icon {
  width: 18px;
  height: 18px;
}

.se-page--faq .faq-hero-search__field input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 16px;
  padding: 12px 8px 12px 0;
  font-family: var(--eet-font);
}

.se-page--faq .faq-hero-search__field input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.se-page--faq .faq-hero-search__clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  flex-shrink: 0;
  border: none;
  background: var(--eet-green);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s var(--eet-ease);
}

.se-page--faq .faq-hero-search__clear:hover {
  background: var(--eet-green-dark);
}

.se-page--faq .faq-hero-search__clear .eet-svg-icon--sm {
  width: 18px;
  height: 18px;
}

/* Mobile category jump strip */
.se-page--faq .faq-mobile-nav {
  display: block;
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--eet-bg-white);
  border-bottom: 1px solid var(--eet-line);
  box-shadow: var(--eet-shadow-sm);
}

.se-page--faq .faq-mobile-nav__scroll {
  display: flex;
  gap: 8px;
  padding: 10px 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.se-page--faq .faq-mobile-nav__scroll::-webkit-scrollbar {
  display: none;
}

.se-page--faq .faq-mobile-nav__link {
  flex-shrink: 0;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--eet-ink-700);
  text-decoration: none;
  background: var(--eet-bg-soft);
  border: 1px solid var(--eet-line);
  border-radius: var(--eet-radius-pill);
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.se-page--faq .faq-mobile-nav__link:hover,
.se-page--faq .faq-mobile-nav__link.is-active {
  background: var(--eet-green-50);
  border-color: rgba(75, 162, 72, 0.45);
  color: var(--eet-green-dark);
}

/* Industry tabs */
.se-page--faq .industry-strip {
  background: var(--eet-bg-white);
  border-bottom: 1px solid var(--eet-line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 16px;
  scrollbar-width: none;
}

.se-page--faq .industry-strip::-webkit-scrollbar {
  display: none;
}

.se-page--faq .ind-tabs {
  display: inline-flex;
  gap: 0;
  min-width: min-content;
}

.se-page--faq .ind-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  min-height: var(--eet-tap, 48px);
  font-size: 13px;
  font-weight: 600;
  color: var(--eet-ink-500);
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--eet-font);
  transition: color 0.2s, border-color 0.2s;
}

.se-page--faq .ind-tab:hover {
  color: var(--eet-ink-900);
  border-bottom-color: rgba(75, 162, 72, 0.35);
}

.se-page--faq .ind-tab.active {
  color: var(--eet-green-dark);
  border-bottom-color: var(--eet-green);
}

/* Content layout — mobile: single column */
.se-page--faq .page {
  width: 100%;
  max-width: var(--eet-content-max);
  margin: 0 auto;
  padding: 24px 16px 48px;
  display: block;
}

.se-page--faq .sidebar {
  display: none;
}

.se-page--faq .faq-main {
  min-width: 0;
}

/* Sidebar navigation (desktop) */
.se-page--faq .sb-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eet-ink-500);
  margin: 0 0 14px;
}

.se-page--faq .sb-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.se-page--faq .sb-list li {
  margin-bottom: 2px;
}

.se-page--faq .sb-item {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--eet-ink-500);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.35;
  padding: 8px 12px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.se-page--faq .sb-item:hover {
  background: var(--eet-bg-white);
  color: var(--eet-ink-900);
}

.se-page--faq .sb-item.active {
  background: var(--eet-bg-white);
  color: var(--eet-ink-900);
  font-weight: 700;
  border-left-color: var(--eet-green);
  box-shadow: var(--eet-shadow-sm);
}

.se-page--faq .sb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--eet-line);
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.se-page--faq .sb-item.active .sb-dot {
  background: var(--eet-green);
}

.se-page--faq .sb-contact {
  margin-top: 28px;
  background: var(--eet-ink-900);
  border-radius: var(--eet-radius);
  padding: 20px 18px;
  color: #e8efe9;
}

.se-page--faq .sb-contact .sc-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
}

.se-page--faq .sb-contact p {
  font-size: 13px;
  color: #a8b8ad;
  line-height: 1.5;
  margin: 0 0 12px;
}

.se-page--faq .sb-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--eet-yellow);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 5px;
  transition: color 0.2s ease;
}

.se-page--faq .sb-contact a:hover {
  color: #ffe566;
}

/* Icons */
.se-page--faq .eet-faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--eet-green-dark);
}

.se-page--faq .eet-faq-icon .eet-svg-icon {
  display: block;
}

.se-page--faq .eet-faq-icon--section {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--eet-green-50);
  border: 1px solid rgba(75, 162, 72, 0.2);
}

.se-page--faq .eet-faq-icon--section .eet-svg-icon {
  width: 20px;
  height: 20px;
}

.se-page--faq .eet-faq-icon--tab {
  width: 18px;
  height: 18px;
  color: var(--eet-ink-500);
}

.se-page--faq .ind-tab.active .eet-faq-icon--tab {
  color: var(--eet-green-dark);
}

.se-page--faq .eet-faq-icon--tab .eet-svg-icon {
  width: 15px;
  height: 15px;
}

.se-page--faq .eet-faq-icon--tip {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  color: var(--eet-green);
  flex-shrink: 0;
}

.se-page--faq .eet-faq-icon--tip .eet-svg-icon {
  width: 16px;
  height: 16px;
}

.se-page--faq .eet-faq-icon--inline {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  color: var(--eet-yellow);
}

.se-page--faq .eet-faq-icon--btn {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}

.se-page--faq .eet-faq-icon--empty {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--eet-green-50);
  color: var(--eet-ink-500);
}

/* FAQ sections */
.se-page--faq .faq-section {
  margin-bottom: 36px;
  scroll-margin-top: 110px;
}

.se-page--faq .faq-section-hd {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--eet-line);
}

.se-page--faq .sec-title {
  flex: 1 1 100%;
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--eet-ink-900);
  line-height: 1.25;
}

.se-page--faq .sec-count {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--eet-green-dark);
  background: var(--eet-green-50);
  padding: 6px 12px;
  border-radius: var(--eet-radius-pill);
  border: 1px solid rgba(75, 162, 72, 0.28);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.se-page--faq .sec-count:hover,
.se-page--faq .sec-count:focus {
  background: var(--eet-bg-white);
  border-color: var(--eet-green);
  box-shadow: var(--eet-shadow-sm);
}

.se-page--faq .sec-count__value {
  white-space: nowrap;
}

.se-page--faq .sub-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eet-green-dark);
  margin-bottom: 10px;
}

.se-page--faq .sub-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(75, 162, 72, 0.35), transparent);
}

.se-page--faq .faq-item {
  background: var(--eet-bg-white);
  border: 1px solid var(--eet-line);
  border-radius: var(--eet-radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}

.se-page--faq .faq-q {
  width: 100%;
  min-height: var(--eet-tap, 48px);
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px 16px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--eet-font);
}

.se-page--faq .faq-q-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--eet-ink-900);
  line-height: 1.45;
}

.se-page--faq .faq-chev {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--eet-bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--eet-ink-700);
  transition: transform 0.3s var(--eet-ease), background 0.2s, color 0.2s;
}

.se-page--faq .faq-item.open .faq-chev {
  transform: rotate(180deg);
  background: var(--eet-green);
  color: #fff;
}

.se-page--faq .faq-chev .eet-svg-icon--chev {
  width: 14px;
  height: 14px;
}

.se-page--faq .faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s var(--eet-ease);
}

.se-page--faq .faq-item.open .faq-body {
  max-height: 1200px;
}

.se-page--faq .faq-ans {
  padding: 14px 16px 18px;
  border-top: 1px solid var(--eet-line);
  font-size: 14px;
  color: var(--eet-ink-500);
  line-height: 1.7;
}

.se-page--faq .faq-ans a {
  color: var(--eet-green-dark);
  font-weight: 600;
}

/* SEO internal links (categories & brands) */
.se-page--faq .faq-intlink,
.se-page--faq .faq-q-text .faq-intlink {
  color: var(--eet-green-dark);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(61, 138, 58, 0.35);
  transition: color 0.2s var(--eet-ease), border-color 0.2s var(--eet-ease);
}

.se-page--faq .faq-intlink:hover,
.se-page--faq .faq-intlink:focus-visible {
  color: var(--eet-green);
  border-bottom-color: var(--eet-green);
}

.se-page--faq .faq-intlink:focus-visible {
  outline: 2px solid var(--eet-green);
  outline-offset: 2px;
}

.se-page--faq .faq-ans .tip .faq-intlink {
  border-bottom-color: rgba(61, 138, 58, 0.5);
}

/* Live search keyword highlight */
.se-page--faq .faq-search-hit {
  background: var(--eet-green-50);
  color: var(--eet-green-dark);
  font-weight: 700;
  padding: 0 2px;
  border-radius: 3px;
}

.se-page--faq .faq-ans .tip {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  background: var(--eet-green-50);
  border-left: 3px solid var(--eet-green);
  padding: 10px 12px;
  border-radius: 0 8px 8px 0;
  margin-top: 10px;
  font-size: 13px;
  color: var(--eet-ink-700);
}

.se-page--faq .no-results {
  text-align: center;
  padding: 32px 16px;
  color: var(--eet-ink-500);
  display: none;
}

.se-page--faq .ind-cta {
  background: var(--eet-header-bg);
  border-radius: var(--eet-radius-lg);
  padding: clamp(28px, 5vw, 40px) clamp(20px, 4vw, 36px);
  text-align: center;
  color: #e8efe9;
  margin-top: 16px;
}

.se-page--faq .ind-cta h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 3vw, 23px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

.se-page--faq .ind-cta p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.se-page--faq .cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  justify-content: center;
}

.se-page--faq .btn-g,
.se-page--faq .btn-o {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: var(--eet-tap, 48px);
  padding: 12px 24px;
  border-radius: var(--eet-radius-sm);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.se-page--faq .btn-g {
  background: var(--eet-green);
  color: #fff;
}

.se-page--faq .btn-g:hover {
  background: var(--eet-green-dark);
  color: #fff;
}

.se-page--faq .btn-o {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: transparent;
}

.se-page--faq .btn-o:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Tablet */
@media (min-width: 640px) {
  .se-page--faq .page {
    padding: 32px 20px 56px;
  }

  .se-page--faq .sec-title {
    flex: 1 1 auto;
    font-size: 20px;
  }

  .se-page--faq .sec-count {
    margin-left: auto;
  }

  .se-page--faq .cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .se-page--faq .btn-g,
  .se-page--faq .btn-o {
    width: auto;
    min-width: 200px;
  }
}

/* Desktop */
@media (min-width: 821px) {
  .se-page--faq {
    scroll-padding-top: 120px;
  }

  .se-page--faq .faq-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }

  .se-page--faq .faq-hero-search__field {
    max-width: 28rem;
  }

  .se-page--faq .faq-mobile-nav {
    display: none;
  }

  .se-page--faq .page {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 48px;
    padding: 56px 40px 80px;
    align-items: start;
  }

  .se-page--faq .sidebar {
    display: block;
    position: sticky;
    top: 88px;
    align-self: start;
  }

  .se-page--faq .ind-cta {
    margin-top: 8px;
  }

  .se-page--faq .cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }

  .se-page--faq .btn-g,
  .se-page--faq .btn-o {
    width: auto;
    min-width: 0;
    flex: 0 1 auto;
  }

  .se-page--faq .faq-section {
    margin-bottom: 48px;
    scroll-margin-top: 120px;
  }

  .se-page--faq .faq-section-hd {
    flex-wrap: nowrap;
    align-items: center;
  }

  .se-page--faq .sec-title {
    font-size: 21px;
  }

  .se-page--faq .eet-faq-icon--section {
    width: 44px;
    height: 44px;
  }

  .se-page--faq .ind-tab {
    padding: 14px 16px;
    gap: 8px;
  }
}

@media (min-width: 1024px) {
  .se-page--faq .page {
    padding-left: 40px;
    padding-right: 40px;
  }

  .se-page--faq .page {
    grid-template-columns: 230px 1fr;
    gap: 48px;
    max-width: var(--eet-content-max);
  }

  .se-page--faq .faq-hero-grid {
    gap: 60px;
  }
}

/* Shorter hero on FAQ vs Service full landing */
@media (min-width: 821px) {
  .se-page--faq section.hero,
  .se-page--faq .hero {
    min-height: clamp(380px, 52vh, 560px);
    padding: 2.5rem 0;
  }
}

@media (max-width: 640px) {
  .se-page--faq section.hero,
  .se-page--faq .hero {
    min-height: auto;
    padding: 2rem 0 1.75rem;
  }

  .se-page--faq .hero h1 {
    font-size: clamp(28px, 7vw, 36px);
  }

  .se-page--faq .hero p.lead {
    font-size: 15px;
  }
}
