/* Page-specific CSS extracted from views */

/* ===== Global Button System (Website) ===== */
/* Use this markup anywhere:
   <a class="ivqa-home-btn ivqa-home-btn-primary" ...><i ...></i><span>Label</span></a>
*/
.ivqa-home-btn,
.tv-btn-primary,
.tv-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 18px 0 18px 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.1;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
}

.ivqa-home-btn i,
.tv-btn-primary i,
.tv-btn-secondary i {
  font-size: 19px;
  line-height: 1;
  vertical-align: -0.1em;
}

.ivqa-home-btn span {
  display: inline-block;
}

.ivqa-home-btn:hover,
.tv-btn-primary:hover,
.tv-btn-secondary:hover {
  transform: translateY(-1px);
}

.ivqa-home-btn:active,
.tv-btn-primary:active,
.tv-btn-secondary:active {
  transform: translateY(0);
}

.ivqa-home-btn:disabled,
.ivqa-home-btn.disabled,
a.ivqa-home-btn[disabled],
a.ivqa-home-btn[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

.ivqa-home-btn:focus,
.ivqa-home-btn:focus-visible,
.tv-btn-primary:focus,
.tv-btn-primary:focus-visible,
.tv-btn-secondary:focus,
.tv-btn-secondary:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.20);
}

/* Primary */
.ivqa-home-btn-primary,
.tv-btn-primary {
  background: var(--tv-theme-1, #2563eb);
  border: 1px solid var(--tv-theme-1, #2563eb);
  color: #fff;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.20);
}

.ivqa-home-btn-primary:hover,
.tv-btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #fff;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.26);
}

/* Secondary / outline */
.ivqa-home-btn-secondary,
.tv-btn-secondary {
  background: #fff;
  border: 1px solid var(--tv-theme-1, #2563eb);
  color: var(--tv-theme-1, #2563eb);
  box-shadow: none;
}

.ivqa-home-btn-secondary:hover,
.tv-btn-secondary:hover {
  background: var(--tv-theme-1, #2563eb);
  border-color: var(--tv-theme-1, #2563eb);
  color: #fff;
}

/* Sizes */
.ivqa-home-btn.btn-sm {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 16px 0 16px 0;
}

.ivqa-home-btn.btn-lg {
  padding: 14px 24px;
  font-size: 17px;
}

/* Make buttons in tables naturally compact (unless explicitly sized) */
.table .ivqa-home-btn:not(.btn-lg):not(.btn-sm) {
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 16px 0 16px 0;
}

.table .ivqa-home-btn i {
  font-size: 16px;
}

/* Input-group compatibility (verification page uses ivqa-home-btn inside .input-group) */
.input-group > .ivqa-home-btn {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.input-group-lg > .ivqa-home-btn {
  padding: 12px 18px;
}

/* Compatibility: disable template text-slide animation inside tv buttons */
.tv-btn-primary .btn-wrap,
.tv-btn-secondary .btn-wrap {
  position: static;
  overflow: visible;
}

.tv-btn-primary .btn-wrap .btn-text2,
.tv-btn-secondary .btn-wrap .btn-text2 {
  display: none !important;
}

.tv-btn-primary:hover .btn-wrap .btn-text1,
.tv-btn-secondary:hover .btn-wrap .btn-text1 {
  transform: none;
}

/* Contact page */
.ivqa-contact-pro {
  color: #334155;
}

.ivqa-contact-pro .tv-section-title-box p {
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
  margin-top: 12px;
}

.ivqa-contact-pro .tv-card-box {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 18px 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  display: flex !important;
  padding-left: 18px !important;
  gap: 14px;
  align-items: center;
}

.ivqa-contact-pro .tv-card-box > .icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2563eb;
  color: #ffffff;
  flex: 0 0 52px;
  position: static !important;
  left: auto !important;
  top: auto !important;
  line-height: 1 !important;
  text-align: center !important;
}

.ivqa-contact-pro .tv-card-box > .content {
  flex: 1 1 auto;
  min-width: 0;
}

.ivqa-contact-pro .tv-card-box .icon i {
  font-size: 20px;
  line-height: 1;
}

.ivqa-contact-pro .tv-card-box .content h4 {
  color: #0f172a;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.ivqa-contact-pro .tv-card-box .content p {
  color: #475569;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 0;
  word-break: break-word;
}

.ivqa-contact-pro .tv-card-box .content a {
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ivqa-contact-pro .tv-contact-right-wrap > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.ivqa-contact-pro .alert {
  margin-bottom: 18px;
}

/* FAQ page */
.scroll-top {
  z-index: 9999 !important;
}

.ivqa-faq-pro {
  color: #334155;
}

.ivqa-faq-pro .tv-section-title-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin-top: 12px;
}

.ivqa-faq-pro .tv-faq-form h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.ivqa-faq-pro .tv-contact-input-box input,
.ivqa-faq-pro .it-contact-textarea-box textarea {
  font-size: 15px;
  color: #0f172a;
}

.ivqa-faq-pro .tv-custom-accordion .accordion-buttons,
.ivqa-faq-pro .tv-custom-accordion .accordion-buttons.collapsed {
  color: #ffffff !important;
}

.ivqa-faq-pro .tv-custom-accordion .accordion-buttons.collapsed {
  background: #2563eb !important;
  border-color: #2563eb !important;
}

.ivqa-faq-pro .tv-custom-accordion .accordion-buttons:not(.collapsed) {
  background: #2b4dff !important;
  border-color: #2b4dff !important;
  color: #ffffff !important;
}

.ivqa-faq-pro .tv-custom-accordion .accordion-buttons:not(.collapsed)::after {
  color: #ffffff !important;
}

.ivqa-faq-pro .tv-custom-accordion .accordion-buttons:focus {
  box-shadow: none;
}

.ivqa-faq-pro .tv-custom-accordion .accordion-body {
  background: #1d4ed8 !important;
  border: 1px solid #1d4ed8 !important;
  border-top: 0 !important;
  border-radius: 0 0 10px 10px;
}

.ivqa-faq-pro .tv-custom-accordion .accordion-body,
.ivqa-faq-pro .tv-custom-accordion .accordion-body p {
  color: #ffffff !important;
  font-size: 16px;
  line-height: 1.75;
}

.ivqa-faq-pro a {
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ivqa-faq-pro a:hover {
  color: #111827;
}

/* Services page */
.tv-service-page-area .row {
  row-gap: 30px;
}

.tv-service-page-area .row > [class*="col-"] {
  display: flex;
}

.tv-service-page-area .single-service-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0 !important;
}

.tv-service-page-area .single-service-item .service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 49, 58, 0.12);
  flex: 0 0 auto;
}

.tv-service-page-area .single-service-item .service-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

.tv-service-page-area .single-service-item .service-icon i {
  font-size: 30px;
  line-height: 1;
  color: #0f313a;
  display: block;
}

.tv-service-page-area .single-service-item .service-section-title {
  margin: 0;
  min-height: 56px;
  display: flex;
  align-items: center;
}

.tv-service-page-area .single-service-item p {
  margin: 0;
  flex: 1 1 auto;
}

.tv-service-page-area .single-service-item .tv-normal-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Service details */
.ivqa-service-details .ivqa-service-detail-img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
}

.ivqa-service-details .faq-title {
  color: #1e293b !important;
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.ivqa-service-details .tv-custom-accordion .accordion-items {
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.ivqa-service-details .tv-custom-accordion .accordion-buttons,
.ivqa-service-details .tv-custom-accordion .accordion-buttons.collapsed {
  color: #1e293b !important;
  background: #f1f5f9 !important;
  border: none !important;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 20px;
  transition: background 0.2s, color 0.2s;
}

.ivqa-service-details .tv-custom-accordion .accordion-buttons:not(.collapsed) {
  color: #ffffff !important;
  background: #2563eb !important;
}

.ivqa-service-details .tv-custom-accordion .accordion-body,
.ivqa-service-details .tv-custom-accordion .accordion-body p {
  color: #334155 !important;
}

.ivqa-service-details .tv-custom-accordion .accordion-body {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-top: 0 !important;
  border-radius: 0 0 10px 10px;
  padding: 16px 20px;
}

.ivqa-service-details .tv-sidebar-area .tv-widget.widget ul {
  padding-left: 0;
  margin-bottom: 0;
}

.ivqa-service-details .tv-sidebar-area .tv-widget.widget .cat-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.ivqa-service-details .tv-sidebar-area .tv-widget.widget .cat-item > a .ivqa-cat-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Shared helpers */
.tv-breadcrumb-area.ivqa-breadcrumb-bg {
  background-image: url("../img/breadcrumb/breadcrumb.jpg");
}

.ivqa-quick-links-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

/* Policies (Terms, Privacy, etc.) */
.ivqa-policy {
  color: #0f313a;
}

.ivqa-policy p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(15, 49, 58, 0.88);
}

.ivqa-policy li {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(15, 49, 58, 0.88);
}

.ivqa-policy .policy-meta {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid rgba(15, 49, 58, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 26px rgba(15, 49, 58, 0.06);
  color: #0f313a;
  font-weight: 700;
  margin-bottom: 18px;
}

.ivqa-policy .policy-section {
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(15, 49, 58, 0.08);
  scroll-margin-top: 110px;
}

.ivqa-policy .policy-section:first-of-type {
  border-top: 0;
}

.ivqa-policy .policy-h {
  margin: 0 0 10px 0;
  color: #0f313a;
  letter-spacing: 0.3px;
}

.ivqa-policy .ivqa-side-nav {
  border: 1px solid rgba(15, 49, 58, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 30px rgba(15, 49, 58, 0.08);
  backdrop-filter: blur(6px);
}

.ivqa-policy .side-list {
  margin: 0;
  padding: 16px 14px;
}

.ivqa-policy .side-list a {
  text-decoration: none;
  color: rgba(15, 49, 58, 0.88);
}

.ivqa-policy .side-list a:hover {
  color: #2b4dff;
}

.ivqa-policy .ivqa-side-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.ivqa-policy .ivqa-side-link .ivqa-icon {
  width: 18px;
  text-align: center;
  opacity: 0.9;
}

.ivqa-policy .ivqa-side-link:hover {
  background: rgba(43, 77, 255, 0.08);
  transform: translateX(1px);
}

.ivqa-policy .ivqa-side-link.is-active {
  background: rgba(43, 77, 255, 0.12);
  color: #2b4dff;
  font-weight: 700;
}

.ivqa-policy .ivqa-side-link.is-active .ivqa-icon {
  color: #2b4dff;
}

@media (max-width: 767.98px) {
  .ivqa-policy .ivqa-policy-sidebar {
    display: none !important;
  }

  .ivqa-policy p {
    font-size: 14px;
    line-height: 1.7;
  }

  .ivqa-policy li {
    font-size: 13px;
    line-height: 1.65;
  }

  .ivqa-policy .policy-h {
    font-size: 18px;
  }

  .ivqa-policy .policy-meta {
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 13px;
  }

  .ivqa-policy .policy-section {
    padding-top: 14px;
    padding-bottom: 14px;
    scroll-margin-top: 90px;
  }
}

.ivqa-bg-hide {
  display: none;
}

/* Pricing page */
.ivqa-solution-switcher {
  display: flex;
  justify-content: center;
}

.ivqa-solution-switcher .tv-btn-primary {
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.2;
  border-radius: 999px;
}

.ivqa-solution-switcher .tv-btn-primary .btn-wrap {
  padding: 0;
}

.ivqa-solution-switcher .tv-btn-primary:not(.active) {
  opacity: 0.85;
}

.ivqa-solution-switcher .tv-btn-primary.active {
  opacity: 1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 575.98px) {
  .ivqa-solution-switcher {
    justify-content: stretch;
  }

  .ivqa-solution-switcher .tv-btn-primary {
    width: 100%;
    justify-content: center;
  }
}

.ivqa-solution-panel--hidden {
  display: none;
}

.ivqa-pricing-faq .tv-custom-accordion .accordion-buttons,
.ivqa-pricing-faq .tv-custom-accordion .accordion-buttons.collapsed {
  color: #ffffff !important;
}

.ivqa-pricing-faq .tv-custom-accordion .accordion-buttons.collapsed {
  background: #2563eb !important;
  border-color: #2563eb !important;
}

.ivqa-pricing-faq .tv-custom-accordion .accordion-buttons:not(.collapsed) {
  background: #2b4dff !important;
  border-color: #2b4dff !important;
  color: #ffffff !important;
}

.ivqa-pricing-faq .tv-custom-accordion .accordion-buttons:not(.collapsed)::after {
  color: #ffffff !important;
}

.ivqa-pricing-faq .tv-custom-accordion .accordion-buttons:focus {
  box-shadow: none;
}

.ivqa-pricing-faq .tv-custom-accordion .accordion-body {
  background: #1d4ed8 !important;
  border: 1px solid #1d4ed8 !important;
  border-top: 0 !important;
  border-radius: 0 0 10px 10px;
}

.ivqa-pricing-faq .tv-custom-accordion .accordion-body,
.ivqa-pricing-faq .tv-custom-accordion .accordion-body p {
  color: #ffffff !important;
}

/* Why choose IVQA page */
.ivqa-why {
  color: #0f313a;
}

.ivqa-why .lead {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(15, 49, 58, 0.9);
}

.ivqa-why .ivqa-feature {
  height: 100%;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(15, 49, 58, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 40px rgba(15, 49, 58, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ivqa-why .ivqa-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(15, 49, 58, 0.1);
}

.ivqa-why .ivqa-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 110, 253, 0.12);
  color: #0d6efd;
  margin-bottom: 14px;
  flex: 0 0 auto;
}

.ivqa-why .ivqa-icon i {
  font-size: 22px;
}

.ivqa-why h3 {
  margin-bottom: 10px;
}

.ivqa-why p {
  margin-bottom: 0;
  color: rgba(15, 49, 58, 0.88);
  line-height: 1.75;
}

@media (max-width: 767.98px) {
  .ivqa-why .lead {
    font-size: 14px;
  }

  .ivqa-why .ivqa-feature {
    padding: 18px;
    border-radius: 14px;
  }

  .ivqa-why .ivqa-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .ivqa-why .ivqa-icon i {
    font-size: 20px;
  }
}

/* ===== Home page hero (moved from views/home.php inline <style>) ===== */
.tv-hero-area.tv-hero-two.ivqa-hero-clean {
  padding-top: 90px !important;
  padding-bottom: 80px !important;
}
.tv-hero-area.tv-hero-two.ivqa-hero-clean::after {
  background: transparent !important;
}

.tv-hero-area.tv-hero-two.ivqa-hero-clean .tv-hero-content {
  max-width: 560px;
}

.tv-hero-area.tv-hero-two.ivqa-hero-clean .tv-hero-subtitle {
  font-size: 16px;
  line-height: 1.4;
  padding-left: 0;
  margin-bottom: 10px;
  text-transform: none;
  letter-spacing: 0.6px;
  opacity: 0.95;
}

.tv-hero-area.tv-hero-two.ivqa-hero-clean .tv-hero-subtitle:after {
  display: none;
}

.tv-hero-area.tv-hero-two.ivqa-hero-clean .tv-hero-title {
  font-size: 46px;
  line-height: 1.12;
  margin-top: 8px;
  margin-bottom: 16px;
}

.tv-hero-area.tv-hero-two.ivqa-hero-clean p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 22px;
  opacity: 0.95;
}

.tv-hero-area.tv-hero-two.ivqa-hero-clean .tv-hero-btn-wrap {
  gap: 14px;
  flex-wrap: wrap;
}

.tv-hero-area.tv-hero-two.ivqa-hero-clean .tv-hero-btn-wrap .ms-3 {
  margin-left: 0 !important;
}

.tv-hero-area.tv-hero-two.ivqa-hero-clean .tv-hero-banner-thumbnail {
  text-align: center;
}

.tv-hero-area.tv-hero-two.ivqa-hero-clean .tv-hero-banner-thumbnail img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  display: block;
  margin: 0 auto;
}

.tv-hero-area.tv-hero-two.ivqa-hero-clean .tv-hero-banner-thumbnail .experience-wrapper {
  display: none;
}

@media (max-width: 991px) {
  .tv-hero-area.tv-hero-two.ivqa-hero-clean {
    padding-top: 72px !important;
    padding-bottom: 64px !important;
  }

  .tv-hero-area.tv-hero-two.ivqa-hero-clean .tv-hero-title {
    font-size: 34px;
  }

  .tv-hero-area.tv-hero-two.ivqa-hero-clean .tv-hero-content {
    margin: 0 auto;
    text-align: center;
  }

  .tv-hero-area.tv-hero-two.ivqa-hero-clean .tv-hero-btn-wrap {
    justify-content: center;
  }
}

/* Sidebar service list: make whole row clickable */
.ivqa-service-details .tv-sidebar-area .tv-widget.widget ul {
  padding-left: 0;
  margin-bottom: 0;
}
.ivqa-service-details .tv-sidebar-area .tv-widget.widget .cat-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.ivqa-service-details .tv-sidebar-area .tv-widget.widget .cat-item > a .ivqa-cat-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===== Pricing page (moved from views/pricing.php inline <style>) ===== */
.ivqa-pricing-section {
  --ivqa-blue: #1d4ed8;
  --ivqa-bg: #f7f8fb;
  --ivqa-text: #111827;
  --ivqa-muted: #6b7280;
  --ivqa-border: rgba(15, 23, 42, 0.08);
  --ivqa-shadow: 0 22px 60px rgba(2, 6, 23, 0.10);
  --ivqa-shadow-soft: 0 14px 34px rgba(2, 6, 23, 0.08);
}

.ivqa-pricing-section { background: var(--ivqa-bg); }
.ivqa-pricing-top { padding-top: 56px !important; padding-bottom: 64px !important; }
@media (max-width: 991px) { .ivqa-pricing-top { padding-top: 44px !important; padding-bottom: 54px !important; } }
.ivqa-pricing-wrap { max-width: 1140px; }
.ivqa-pricing-hero { text-align: center; margin-bottom: 0; }
.ivqa-kicker { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ivqa-muted); }
.ivqa-pricing-hero h2 { margin: 0 0 8px; font-weight: 900; color: var(--ivqa-text); line-height: 1.15; }
.ivqa-pricing-hero p { margin: 0; color: var(--ivqa-muted); line-height: 1.65; }
.ivqa-hero-copy { margin: 10px auto 0; max-width: 780px; }
.ivqa-hero-copy h3 { margin: 0 0 6px; font-size: 18px; font-weight: 900; color: var(--ivqa-text); letter-spacing: -0.01em; }
.ivqa-hero-copy p { margin: 0; color: var(--ivqa-muted); }

.ivqa-trust-note { margin: 18px auto 0; max-width: 980px; background: rgba(29, 78, 216, 0.08); border: 1px solid rgba(29, 78, 216, 0.16); color: var(--ivqa-text); padding: 14px 16px; border-radius: 16px; text-align: left; }
.ivqa-trust-note strong { font-weight: 900; }

.ivqa-controls-row { margin-top: 14px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
@media (max-width: 991px) { .ivqa-controls-row { width: 100%; } }

.ivqa-toggle { display: inline-flex; background: #fff; border: 1px solid var(--ivqa-border); border-radius: 999px; padding: 6px; box-shadow: 0 14px 30px rgba(2, 6, 23, 0.08); gap: 6px; }
.ivqa-toggle button { border: 0; background: transparent; padding: 11px 18px; border-radius: 999px; font-weight: 900; color: var(--ivqa-muted); line-height: 1; }
.ivqa-toggle button.active { background: var(--ivqa-blue); color: #fff; box-shadow: 0 12px 26px rgba(29, 78, 216, 0.26); }
.ivqa-toggle button i { margin-right: 8px; opacity: .85; }
@media (max-width: 991px) { .ivqa-toggle { width: 100%; justify-content: space-between; } }
.ivqa-solution-panel { margin-top: 18px; will-change: opacity, transform, max-height; transition: opacity 180ms ease, transform 180ms ease, max-height 220ms ease; }
.ivqa-solution-panel.ivqa-hidden { opacity: 0; transform: translateY(10px); pointer-events: none; max-height: 0; overflow: hidden; }
.ivqa-solution-panel:not(.ivqa-hidden) { opacity: 1; transform: translateY(0); max-height: 9999px; overflow: visible; }

.ivqa-price { will-change: transform; }
.ivqa-price.ivqa-price-flash { animation: ivqaPriceFlash 220ms ease; }
@keyframes ivqaPriceFlash { 0% { transform: translateY(0); } 50% { transform: translateY(-2px); } 100% { transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .ivqa-solution-panel { transition: none !important; }
  .ivqa-price.ivqa-price-flash { animation: none !important; }
  .ivqa-plan-card:hover { transform: none !important; transition: none !important; }
  .ivqa-price-switch .highlighter { transition: none !important; }
}

.ivqa-panel-head { display:flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin: 26px 0 14px; }
.ivqa-panel-title { margin: 0; font-weight: 900; color: var(--ivqa-text); }
.ivqa-panel-sub { margin: 4px 0 0; color: var(--ivqa-muted); line-height: 1.6; }
.ivqa-panel-meta { color: var(--ivqa-muted); font-weight: 700; font-size: 13px; }
@media (max-width: 991px) { .ivqa-panel-head { flex-direction: column; align-items: flex-start; } }

.ivqa-controls { width: 100%; max-width: 1140px; display:grid; grid-template-columns: 1fr auto 1fr; align-items: center; column-gap: 14px; row-gap: 12px; }
.ivqa-controls-spacer { display: none; }
.ivqa-control { background:#fff; border: 1px solid var(--ivqa-border); border-radius: 999px; padding: 8px 12px; box-shadow: 0 10px 22px rgba(2, 6, 23, 0.06); }
.ivqa-control label { display:block; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ivqa-muted); font-weight: 900; margin-bottom: 6px; }
.ivqa-control.ivqa-control-billing { grid-column: 2; justify-self: center; }
.ivqa-control.ivqa-control-currency { grid-column: 3; justify-self: end; }
.ivqa-controls-row .ivqa-control { display: flex; align-items: center; gap: 10px; padding: 10px 14px; }
.ivqa-controls-row .ivqa-control label { margin: 0; font-size: 11px; letter-spacing: .10em; }
.ivqa-select { appearance: none; -webkit-appearance: none; -moz-appearance: none; background: rgba(2, 6, 23, 0.03); border: 1px solid rgba(2, 6, 23, 0.06); padding: 7px 10px; border-radius: 12px; font-weight: 900; color: var(--ivqa-text); min-width: 96px; font-size: 13px; }
.nice-select.ivqa-select { height: auto; line-height: 1; padding: 8px 34px 8px 10px; border-radius: 12px; font-weight: 900; font-size: 13px; border: 1px solid rgba(2, 6, 23, 0.06); background: rgba(2, 6, 23, 0.03); }
.nice-select.ivqa-select:after { border-bottom: 2px solid rgba(17, 24, 39, 0.45); border-right: 2px solid rgba(17, 24, 39, 0.45); height: 7px; width: 7px; margin-top: -5px; right: 12px; }
.nice-select.ivqa-select .list { width: 100%; border-radius: 12px; border: 1px solid rgba(2, 6, 23, 0.10); box-shadow: 0 18px 42px rgba(2, 6, 23, 0.14); max-height: 220px; overflow: auto; z-index: 9999; }
.nice-select.ivqa-select .option { font-weight: 800; }
.nice-select.ivqa-select .option.selected { font-weight: 900; }
.ivqa-billing { display:flex; align-items: center; gap: 8px; }
.ivqa-sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.ivqa-billing-cycle { margin: 0; padding: 0; border: 0; }
.ivqa-price-switch { position: relative; display: grid; grid-template-columns: 1fr 1fr; background: rgba(2, 6, 23, 0.03); border: 1px solid rgba(2, 6, 23, 0.06); border-radius: 12px; padding: 3px; min-width: 180px; }
.ivqa-price-switch input { position: absolute; opacity: 0; pointer-events: none; }
.ivqa-price-switch label { position: relative; z-index: 2; margin: 0; padding: 7px 10px; border-radius: 10px; font-weight: 900; font-size: 13px; color: var(--ivqa-muted); line-height: 1; text-align: center; cursor: pointer; user-select: none; }
.ivqa-price-switch label.active { color: var(--ivqa-text); }
.ivqa-price-switch .highlighter { position: absolute; z-index: 1; top: 3px; bottom: 3px; left: 3px; width: calc(50% - 1.5px); background: #fff; border-radius: 10px; box-shadow: 0 10px 18px rgba(2, 6, 23, 0.08); transition: transform 180ms ease; }
.ivqa-save { display:inline-flex; align-items:center; gap: 8px; padding: 7px 10px; border-radius: 999px; background: rgba(29, 78, 216, 0.08); border: 1px solid rgba(29, 78, 216, 0.14); color: var(--ivqa-blue); font-weight: 900; font-size: 12px; }
.ivqa-save small { font-weight: 800; color: var(--ivqa-muted); }
@media (max-width: 991px) { .ivqa-controls { grid-template-columns: 1fr; } .ivqa-control { width: 100%; } .ivqa-control.ivqa-control-billing, .ivqa-control.ivqa-control-currency { grid-column: auto; justify-self: stretch; } }

.ivqa-plan-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
@media (max-width: 991px) { .ivqa-plan-grid { grid-template-columns: 1fr; } }

.ivqa-plan-card { background: #fff; border-radius: 16px; box-shadow: var(--ivqa-shadow-soft); padding: 22px; display: flex; flex-direction: column; min-height: 100%; border: 1px solid transparent; }
.ivqa-plan-card:hover { transform: translateY(-2px); transition: 180ms ease; }
.ivqa-plan-card .badge-popular { position: absolute; top: 14px; right: 14px; background: rgba(29, 78, 216, 0.10); color: var(--ivqa-blue); padding: 7px 10px; border-radius: 999px; font-size: 12px; font-weight: 900; }
.ivqa-plan-card.recommended { position: relative; background: linear-gradient(180deg, rgba(29, 78, 216, 0.06), rgba(255,255,255,1) 45%); border-color: rgba(29, 78, 216, 0.18); transform: scale(1.03); box-shadow: var(--ivqa-shadow); }
@media (max-width: 991px) { .ivqa-plan-card.recommended { transform: none; } }

.ivqa-plan-name { margin: 0; font-weight: 700; color: var(--ivqa-text); }
.ivqa-plan-desc { margin-top: 6px; color: var(--ivqa-muted); line-height: 1.6; }

.ivqa-price { margin-top: 16px; display:flex; align-items: baseline; gap: 6px; }
.ivqa-price .amount { font-size: 46px; font-weight: 900; letter-spacing: -0.02em; color: var(--ivqa-text); }
.ivqa-price .per { font-size: 14px; color: var(--ivqa-muted); font-weight: 700; }
.ivqa-price .currency { font-size: 18px; color: var(--ivqa-text); font-weight: 900; margin-right: 2px; }

.ivqa-features { margin: 16px 0 0; padding: 0; list-style: none; color: var(--ivqa-text); line-height: 1.75; }
.ivqa-features li { padding: 8px 0; border-top: 1px solid rgba(15, 23, 42, 0.06); font-weight: 400; }
.ivqa-features li:first-child { border-top: 0; }
.ivqa-features li .dot { display:inline-block; width: 6px; height: 6px; border-radius: 99px; background: rgba(29, 78, 216, 0.35); margin-right: 10px; transform: translateY(-1px); }

.ivqa-note { margin-top: 12px; display:flex; align-items: center; gap: 10px; color: var(--ivqa-muted); font-size: 13px; }
.ivqa-note .pill { display:inline-flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 999px; background: rgba(2, 6, 23, 0.04); border: 1px solid rgba(2, 6, 23, 0.06); }
.ivqa-note .pill i { color: rgba(29, 78, 216, 0.75); }
.ivqa-note .pill strong { font-weight: 800; color: var(--ivqa-text); }

.ivqa-cta { margin-top: auto; padding-top: 16px; }
.ivqa-btnfull { display:block; width:100%; text-align:center; }
.ivqa-btnrow { display:flex; flex-wrap:wrap; gap: 10px; }
.ivqa-btnrow .tv-btn-primary { min-width: 220px; }

.ivqa-addon { margin-top: 18px; background: rgba(255,255,255,0.70); border: 1px dashed rgba(2, 6, 23, 0.18); padding: 16px; border-radius: 16px; color: var(--ivqa-text); }
.ivqa-addon h4 { margin: 0 0 6px; font-weight: 900; }

/* University tab: no billing toggle needed */
.ivqa-pricing-hero.ivqa-mode-university .ivqa-control.ivqa-control-billing { display: none; }
.ivqa-pricing-hero.ivqa-mode-university .ivqa-controls { grid-template-columns: 1fr auto; }
.ivqa-pricing-hero.ivqa-mode-university .ivqa-control.ivqa-control-currency { grid-column: 2; justify-self: end; }

/* ===== Partner verification page (moved from views/partnerverif.php inline <style>) ===== */
/* ===== IVQA SIMPLE DESIGN ===== */
.ivqa-wrapper {
  max-width: 820px;
  margin: 60px auto;
}

.ivqa-card {
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.ivqa-header {
  background: linear-gradient(135deg, #0d6efd, #2563eb);
  color: #fff;
  border-radius: 16px 16px 0 0;
  padding: 20px 24px;
}

.ivqa-header h4 {
  margin: 0;
  font-weight: 600;
}

.ivqa-status {
  font-size: 13px;
  opacity: .9;
}

.ivqa-table th {
  width: 32%;
  background: #f8fafc;
  font-weight: 600;
}

.ivqa-footer {
  font-size: 13px;
  color: #6b7280;
  text-align: center;
  margin-top: 16px;
}

/* ===== SERVICE DETAILS IMAGES ===== */
.ivqa-service-img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
}
