/* ===== Mobile responsive ===== */

@media (max-width: 1024px) {
  .header-inner {
    padding: 0.6rem 1rem;
  }

  .nav-list {
    gap: 0;
  }

  .nav-link {
    padding: 0.4rem 0.5rem;
    font-size: 0.85rem;
  }

  .search-input {
    width: 180px;
  }

  .hero-banner {
    min-height: auto;
  }

  .hero-banner-inner {
    padding: 2.5rem 1.25rem;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: auto;
  }

  .hero-banner-inner {
    padding: 2rem 1rem;
  }

  .hero-banner-search {
    max-width: 100%;
  }

  .menu-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .nav {
    order: 4;
    flex: 1 1 100%;
    justify-content: flex-start;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .header-inner.nav-open .nav {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0.5rem 0;
    gap: 0;
  }

  .nav-list > li {
    border-bottom: 1px solid var(--header-border);
  }

  .nav-list > li:last-child {
    border-bottom: none;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .has-dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0 0 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
    background: #f9fafb;
  }

  .has-dropdown.expanded .dropdown {
    max-height: 1000px;
  }

  .dropdown a {
    padding: 0.5rem 1rem;
  }

  .header-actions {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-inner {
    gap: 0px;
  }

  .logo,
  .logo img {
    height: 36px;
  }
}

/* ===== Footer responsive ===== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-top {
    padding: 2rem 1rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-newsletter .newsletter-form {
    max-width: 100%;
  }

  .footer-social {
    gap: 1rem;
    padding-top: 1.25rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

}

@media (max-width: 480px) {
  .footer-bottom {
    padding: 1rem 0.75rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }

}

/* ===== Strategies section responsive ===== */
@media (max-width: 992px) {
  .strategies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .strategies-section {
    padding: 2rem 1rem;
  }

  .strategies-title {
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
  }

  .strategies-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .strategies-card {
    padding: 2rem 1rem 1.25rem;
  }
}

/* ===== Reports Categories responsive ===== */
@media (max-width: 992px) {
  .reports-categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .reports-categories-section {
    padding: 2rem 1rem;
  }

  .reports-categories-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .reports-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .reports-category-card {
    padding: 1.25rem 0.75rem;
  }

  .reports-category-label {
    font-size: 0.875rem;
  }
}


/* ===== Latest Reports & Press Release sections responsive ===== */
@media (max-width: 768px) {
  .latest-reports-section,
  .press-release-section {
    padding: 2rem 1rem;
  }

  .content-cards-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .content-card-date {
    width: 80px;
    padding: 0.75rem 0.5rem;
  }

  .content-card-date-month {
    font-size: 0.875rem;
  }

  .content-card-date-year {
    font-size: 1rem;
  }

  .content-card-body {
    padding: 0.875rem 1rem;
  }

  .content-card-title {
    font-size: 1rem;
  }

  .content-card-desc {
    -webkit-line-clamp: 2;
  }
}

/* ===== Testimonials responsive ===== */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 2.5rem 1rem;
  }

  .testimonials-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .testimonial-slide {
    flex-direction: column;
    padding: 1.5rem 1.25rem;
  }

  .testimonial-quote-icon {
    width: 44px;
    height: 44px;
  }

  .testimonial-track {
    min-height: 200px;
  }

  .testimonials-controls {
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
  }

  .testimonial-btn {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .testimonial-text {
    font-size: 1rem;
  }

  .testimonial-slide {
    padding: 1.25rem 1rem;
  }
}

/* ===== Stats section responsive ===== */
@media (max-width: 992px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .stat-item {
    padding: 1.25rem 0.875rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .stats-section {
    padding: 2.5rem 1rem;
  }

  .stats-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-item {
    padding: 1rem 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 0.5rem;
  }

  .stat-icon-img {
    width: 36px;
    height: 36px;
  }

  .stat-label {
    font-size: 0.75rem;
  }
}

/* ===== Details page responsive ===== */

/* Report detail hero (details.html) */
@media (max-width: 1024px) {
  .report-detail-hero-content {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .report-detail-img {
    flex-shrink: 0;
  }

  .report-detail-img img {
    width: 180px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .report-detail-hero {
    padding: 0.75rem 0 1.5rem;
  }

  .report-detail-hero-inner {
    padding: 0 1rem;
  }

  .report-detail-hero-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .report-detail-img {
    text-align: center;
  }

  .report-detail-img img {
    width: 100%;
    max-width: 220px;
    height: auto;
    margin: 0 auto;
  }

  .report-detail-hero-title {
    font-size: 1.35rem;
  }

  .report-detail-hero-desc {
    font-size: 0.9375rem;
  }

  .report-detail-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0;
    font-size: 0.8125rem;
  }

  .report-detail-hero-meta span {
    margin-right: 0.25rem;
    margin-left: 0;
  }

  .report-detail-hero-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
  }

  .report-detail-breadcrumb {
    font-size: 0.8125rem;
    word-break: break-word;
  }

  .report-detail-breadcrumb-sep {
    margin: 0 0.2rem;
  }
}

@media (max-width: 480px) {
  .report-detail-hero-inner {
    padding: 0 0.75rem;
  }

  .report-detail-hero-title {
    font-size: 1.2rem;
  }

  .report-detail-hero-meta {
    font-size: 0.75rem;
  }
}

@media (max-width: 1024px) {
  .details-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-affix {
    position: static;
  }

  .licence-box {
    position: static;
  }

  .report-hero {
    flex-direction: column;
  }

  .report-overview-card {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .details-page {
    padding: 1rem 0 2rem;
  }

  .details-inner {
    padding: 0 1rem;
  }

  .report-actions {
    flex-direction: column;
  }

  .btn-detail {
    width: 100%;
    justify-content: center;
  }

  .report-tabs {
    flex-wrap: wrap;
    padding: 6px 10px;
    top: 60px;
  }

  .report-tab {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }

  .report-tab-content {
    padding: 1rem 1rem 1.25rem;
  }

  .report-stats-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .report-stat-card {
    padding: 0.875rem 0.75rem;
  }

  .report-stat-card__value {
    font-size: 1rem;
  }

  .report-stat-card__label,
  .report-stat-card__suffix {
    font-size: 0.75rem;
  }

  .report-description-body .report-desc-title {
    font-size: 1.25rem;
  }

  .report-description-body .report-desc-subtitle {
    font-size: 1.05rem;
  }

  .report-description-body .report-desc-lead,
  .report-description-body .report-desc-bullets {
    font-size: 0.9375rem;
  }

  .licence-box {
    padding: 1rem 1rem 1.25rem;
  }

  .tailored-report-box {
    padding: 1rem 1rem 1.25rem;
  }

  .tailored-report-title {
    font-size: 1rem;
  }

  .tailored-report-desc {
    font-size: 0.875rem;
  }

  .btn-licence,
  .btn-tailored-report {
    width: 100%;
    justify-content: center;
  }

  .recent-reports-row.latest-reports-section {
    padding: 2rem 1rem;
  }

  .report-toc .toc-item {
    font-size: 0.9rem;
  }

  .report-toc .toc-level-1 {
    font-size: 1rem;
  }

  .report-companies-list {
    font-size: 0.9375rem;
    padding-left: 1rem;
  }
}

@media (max-width: 480px) {
  .details-inner {
    padding: 0 0.75rem;
  }

  .report-stats-cards {
    grid-template-columns: 1fr;
  }

  .report-tabs {
    top: 56px;
  }

  .report-tab {
    font-size: 0.8rem;
    padding: 0.45rem 0.5rem;
  }

  .report-overview-card {
    width: 100%;
  }

  .report-card-image-wrap {
    width: 100px;
    height: 100px;
    margin-top: -45px;
  }

  .report-title {
    font-size: 1.1rem;
  }

  .report-sticky-header-inner {
    padding: 0.5rem 0.75rem;
  }

  .report-sticky-logo img {
    height: 30px;
  }

  .report-sticky-title {
    font-size: 0.9375rem;
  }

  .report-sticky-meta {
    font-size: 0.75rem;
  }

  .report-sticky-contact-link {
    font-size: 0.8125rem;
  }

  .btn-report-sticky {
    font-size: 0.8125rem;
    padding: 0.45rem 0.75rem;
  }
}

/* Our Clients marquee */
@media (max-width: 768px) {
  .clients-section {
    margin-top: 2rem;
    padding: 1.5rem 0 2rem;
  }

  .clients-title {
    font-size: 1.5rem;
  }

  .clients-marquee-item {
    width: 140px;
    height: 70px;
    padding: 0.75rem 1rem;
  }
}

/* FAQ section */
@media (max-width: 768px) {
  .faq-section {
    margin-top: 2rem;
    padding: 1.5rem 0 2rem;
  }

  .faq-title {
    font-size: 1.5rem;
  }

  .faq-question {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 1rem 0.875rem;
  }
}