/* ── Secondary Market Research — Design System ─────────────
   Modern gradient design inspired by Primary Intelligence
   Color scheme: Orange-Red with Amber accents
    Color scheme: Deep Blue with Purple accents
──────────────────────────────────────────────────────── */

:root {
 /* --bg-main: #0f0604;
  --bg-elevated: #180a08;
  --bg-light: #fff8f5;
  --ink: #1a0805;
  --text-main: #f9f3f0;
  --text-muted: #d0ada0;
  --accent: #f97316;
  --accent-soft: #fb923c;
  --accent-dim: rgba(249, 115, 22, 0.22);
  --line: rgba(255, 255, 255, 0.1);*/

   --bg-main: #020a1a;
  --bg-elevated: #041028;
  --bg-light: #f2f4f8;
  --ink: #0a1232;
  --text-main: #eef2f9;
  --text-muted: #9ab0d0;
  --accent: #4c6ef5;
  --accent-soft: #748ffc;
  --accent-dim: rgba(76, 110, 245, 0.22);
  --line: rgba(255, 255, 255, 0.1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
    color: var(--text-main);
}

.bgMain-sr {
    background: var(--bg-main);
}

h1, h2, h3, h4 {
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: -0.01em;
}

/* ── INTRO SECTION ─────────────────────────────────────── */
.section-dark-sr {
  background:
    radial-gradient(circle at 75% 25%, rgba(76, 110, 245, 0.15), transparent 40%),
    radial-gradient(circle at 25% 75%, rgba(124, 58, 237, 0.12), transparent 35%),
    #020a1a;
  padding: 5rem 0;
}

.section-light-sr { 
  background: var(--bg-light); 
  color: var(--ink);
  padding: 5rem 0;
}

.intro-card-sr {
    background: rgba(4, 16, 40, 0.7);
    border: 1px solid rgba(76, 110, 245, 0.25);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .intro-card-sr::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(76, 110, 245, 0.08), transparent);
        transition: left 0.6s ease;
    }

    .intro-card-sr:hover::before {
        left: 100%;
    }

    .intro-card-sr:hover {
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2), 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-3px);
    }

.intro-icon-badge-sr {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #4c6ef5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(76, 110, 245, 0.3);
    transition: all 0.3s ease;
    color: white;
}

.intro-card-sr:hover .intro-icon-badge-sr {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 28px rgba(76, 110, 245, 0.4);
}

/* ── SERVICES IMAGE CONTAINER ───────────────────────────── */
.services-image-container-sr {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1.5px solid rgba(76, 110, 245, 0.3);
    height: 100%;
    min-height: 400px;
}

    .services-image-container-sr img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .services-image-container-sr:hover img {
        transform: scale(1.08);
    }

.image-overlay-badge-sr {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(4, 16, 40, 0.85);
    border: 1px solid rgba(76, 110, 245, 0.4);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .image-overlay-badge-sr i {
        font-size: 1.5rem;
        color: var(--accent-soft);
    }

    .image-overlay-badge-sr span {
        font-weight: 700;
        font-size: 1.05rem;
        color: var(--text-main);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

/* ── SERVICES LIST ──────────────────────────────────────── */
.services-list-sr {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-item-sr {
    background: rgba(4, 16, 40, 0.6);
    border: 1px solid rgba(76, 110, 245, 0.2);
    border-left: 3px solid var(--accent);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: start;
    gap: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .service-item-sr::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(76, 110, 245, 0.08), transparent);
        transition: left 0.6s ease;
    }

    .service-item-sr:hover::before {
        left: 100%;
    }

    .service-item-sr:hover {
        transform: translateX(8px);
        border-left-color: var(--accent-soft);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

.service-icon-sr {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4c6ef5, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(76, 110, 245, 0.3);
    transition: transform 0.3s ease;
}

.service-item-sr:hover .service-icon-sr {
    transform: scale(1.1) rotate(5deg);
}

.service-content-sr h5 {
    color: var(--accent-soft);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.service-content-sr p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ── EYEBROW ─────────────────────────────────────────────── */
.eyebrow-sr {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  color: var(--accent-soft);
  font-weight: 700;
}

/* ── CONSULTING CARDS (2x2 Grid) ────────────────────────── */
.consulting-card-sr {
  background: linear-gradient(135deg, #ffffff 0%, #eef2f9 100%);
  border: 1px solid rgba(76, 110, 245, 0.25);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: all 0.3s ease;
  height: 100%;
  border-left: 4px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.consulting-card-sr::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76, 110, 245, 0.05), transparent);
  transition: left 0.6s ease;
}

.consulting-card-sr:hover::before {
  left: 100%;
}

.consulting-card-sr:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  border-left-color: var(--accent-soft);
}

.consulting-icon-sr {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4c6ef5, #7c3aed);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  box-shadow: 0 4px 12px rgba(76, 110, 245, 0.3);
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}

.consulting-card-sr:hover .consulting-icon-sr {
  transform: scale(1.1) rotate(5deg);
}

.consulting-card-sr h5 {
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.consulting-card-sr ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.consulting-card-sr ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.875rem;
  color: #1e3a5f;
  line-height: 1.6;
}

.consulting-card-sr ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.consulting-card-sr ul li:last-child {
  margin-bottom: 0;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .section-dark-sr,
  .section-light-sr { 
    padding: 3.5rem 0; 
  }
}

@media (max-width: 767px) {
  .consulting-card-sr { 
    padding: 1.5rem 1.25rem; 
  }

  .services-image-container-sr img {
    min-height: 250px;
  }
}

@media (max-width: 575px) {
  .service-icon-sr {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .intro-icon-badge-sr {
    width: 70px;
    height: 70px;
  }
  
  .intro-icon-badge-sr i {
    font-size: 2rem !important;
  }

  .consulting-icon-sr {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .services-image-container-sr img,
  .service-item-sr::before,
  .intro-card-sr::before,
  .consulting-card-sr::before { 
    animation: none; 
  }
}

/* ── MINI SERVICE CARDS (4-column unique design) ─────────── */
.mini-service-card-sr {
  background: rgba(4, 16, 40, 0.6);
  border: 1px solid rgba(76, 110, 245, 0.25);
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mini-service-card-sr::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76, 110, 245, 0.08), transparent);
  transition: left 0.6s ease;
}

.mini-service-card-sr:hover::before {
  left: 100%;
}

.mini-service-card-sr:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  border-color: rgba(76, 110, 245, 0.4);
}

.mini-service-icon-sr {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4c6ef5, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 12px rgba(76, 110, 245, 0.3);
  transition: transform 0.3s ease;
}

.mini-service-card-sr:hover .mini-service-icon-sr {
  transform: scale(1.15) rotate(10deg);
}

.mini-service-card-sr h6 {
  color: var(--accent-soft);
  font-weight: 700;
  font-size: 1rem;
}

.mini-service-card-sr p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* ── LARGE IMAGE CONTAINER (Full width with caption) ───────── */
.large-image-container-sr {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: 1.5px solid rgba(76, 110, 245, 0.3);
}

.large-image-container-sr img {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.large-image-container-sr:hover img {
  transform: scale(1.05);
}

.image-caption-sr {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(4, 16, 40, 0.95), transparent);
  padding: 2rem 1.5rem;
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.image-caption-sr i {
  color: var(--accent-soft);
}

/* ── CTA SECTION ────────────────────────────────────────── */
.section-cta-sr {
  background:
    radial-gradient(circle at 50% 50%, rgba(76, 110, 245, 0.18), transparent 50%),
    #020a1a;
  padding: 5rem 0;
}

.cta-panel-sr {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: rgba(4, 16, 40, 0.6);
  border: 1.5px solid rgba(76, 110, 245, 0.3);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cta-panel-sr h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--text-main);
  margin-bottom: 1rem;
}

.cta-panel-sr p {
  color: #9ab0d0;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-glow-sr {
  background: linear-gradient(135deg, #4c6ef5, #7c3aed);
  border: 0;
  color: #ffffff;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 20px rgba(76, 110, 245, 0.35);
  transition: all 0.3s ease;
}

.btn-glow-sr:hover {
  background: linear-gradient(135deg, #748ffc, #a78bfa);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(76, 110, 245, 0.45);
}

/* ── FAQ SECTION ────────────────────────────────────────── */
.section-faq-sr {
  background:
    radial-gradient(circle at 75% 25%, rgba(76, 110, 245, 0.12), transparent 40%),
    #020a1a;
  padding: 5rem 0;
}

.faq-intro-sr {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 52ch;
  margin: 0 auto;
}

.faq-item-sr {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item-sr:first-child { 
  border-top: 1px solid rgba(255, 255, 255, 0.08); 
}

.faq-btn-sr {
  background: transparent;
  color: #c5d4ee;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 1.25rem 0.25rem;
  box-shadow: none !important;
  transition: color 200ms ease;
  border: none;
}

.faq-btn-sr:not(.collapsed) {
  color: var(--accent-soft);
  background: transparent;
}

.faq-btn-sr:hover { 
  color: #fff; 
}

.faq-btn-sr::after { 
  filter: invert(1) brightness(1.4); 
  flex-shrink: 0; 
}

.faq-body-sr {
  color: #9ab0d0;
  font-size: 0.97rem;
  line-height: 1.75;
  padding: 0 0.25rem 1.25rem;
}

/* ── PRESS RELEASE CARDS (Fancy Modern Design) ──────────── */
.press-card-sr {
  background: linear-gradient(135deg, #ffffff 0%, #eef2f9 100%);
  border: 1px solid rgba(76, 110, 245, 0.2);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.press-card-sr::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76, 110, 245, 0.06), transparent);
  transition: left 0.6s ease;
}

.press-card-sr:hover::before {
  left: 100%;
}

.press-card-sr:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 32px rgba(76, 110, 245, 0.2), 0 8px 16px rgba(0, 0, 0, 0.15);
  border-color: rgba(76, 110, 245, 0.4);
}

.press-icon-wrapper-sr {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4c6ef5, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: white;
  box-shadow: 0 6px 16px rgba(76, 110, 245, 0.3);
  transition: all 0.4s ease;
}

.press-card-sr:hover .press-icon-wrapper-sr {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 8px 20px rgba(76, 110, 245, 0.4);
}

.press-link-sr {
  text-decoration: none;
  display: block;
  position: relative;
}

.press-title-sr {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0d1b3e;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  padding-right: 2rem;
  min-height: 80px;
  transition: color 0.3s ease;
}

.press-card-sr:hover .press-title-sr {
  color: var(--accent);
}

.press-arrow-sr {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(76, 110, 245, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  transition: all 0.4s ease;
}

.press-card-sr:hover .press-arrow-sr {
  background: linear-gradient(135deg, #4c6ef5, #7c3aed);
  color: white;
  transform: translateX(5px) scale(1.1);
  box-shadow: 0 4px 12px rgba(76, 110, 245, 0.3);
}

/* ── RESPONSIVE PRESS CARDS ─────────────────────────────── */
@media (max-width: 767px) {
  .press-card-sr {
    padding: 1.5rem 1.25rem;
  }

  .press-icon-wrapper-sr {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .press-title-sr {
    font-size: 0.95rem;
    min-height: 70px;
  }

  .press-arrow-sr {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}
