/* =========================================================
   REPORT DETAIL PAGE
   Modern • Premium • Ecommerce-inspired (Polished)
   ========================================================= */

.container {
  max-width: 100%;
  padding-left: clamp(24px, 4vw, 64px);
  padding-right: clamp(24px, 4vw, 64px);
}

/* =========================================================
   BASE LAYOUT
   ========================================================= */
.report-layout {
  display: grid;
  gap: var(--space-10);
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
}

.report-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* =========================================================
   STICKY SIDEBAR FOR DESKTOP
   ========================================================= */
@media (min-width: 1024px) {
  .report-layout {
    grid-template-columns: 3fr 1fr;
    align-items: start;
    position: relative;
    min-height: 100vh;
  }
  
  .report-sidebar {
    position: sticky;
    top: 80px;
    height: fit-content;
  }
  
  .report-main {
    min-height: 1500px;
    padding-right: var(--space-6);
    border-right: 1px solid var(--color-border);
  }
  
  .report-sidebar {
    padding-left: var(--space-6);
  }
}


/* ---------- Visible separation between 75% and 25% ---------- */
@media (min-width: 1024px) {
  .report-main {
    padding-right: var(--space-6);
    border-right: 1px solid var(--color-border);
  }

  .report-sidebar {
    padding-left: var(--space-6);
  }
}


/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.breadcrumb a {
  color: var(--color-text-body);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}


/* =========================================================
   REPORT HEADER WITH THUMBNAIL
   ========================================================= */

.report-header {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
  margin-bottom: var(--space-2);
}



/* Title + meta */
.report-header-content {
  flex: 1;
}

/* Meta spacing refinement */
.report-header-content .report-meta {
  margin-top: var(--space-3);
}


/* =========================================================
   MAIN CONTENT
   ========================================================= */


.report-main h1 {
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: var(--space-4);
}

.report-main h5 {
  color: #2c4964;
  font-size: 18px;
  font-weight: 600;
  line-height: 32px;
}

.report-main h6 {
  color: #2c4964;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
}

.report-main h7 {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 400;
  color: #555;
  margin-bottom: var(--space-4);
}

/* ---------- Meta ---------- */
.report-meta {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--space-4);
  font-size: 0.85rem;
  margin-bottom: var(--space-6);
}

.report-meta span {
  white-space: nowrap;
}

/* ---------- KPI GRID ---------- */
.report-kpis {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

@media (min-width: 640px) {
  .report-kpis {
    grid-template-columns: repeat(4, 1fr);
  }
}

.kpi-box {
  background: linear-gradient(to bottom, #ffffff, var(--color-bg-soft));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

.kpi-label {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.kpi-value {
  font-size: 1.25rem;
  font-weight: 700;
}

/* =========================================================
   TABS - FIXED ALIGNMENT
   ========================================================= */

.tabs {
  margin-top: var(--space-5);
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  gap: 0;
}

@media (min-width: 992px) {
  .tabs-nav {
    position: sticky;
    top: 80px;
    z-index: 50;
  }
}

.tabs-nav button,
.tabs-nav a {
  flex: 1 1 auto;
  min-width: 0;
  padding: 13px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  background: none;
  border: none;
  border-right: 1px solid var(--color-border);
  cursor: pointer;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.tabs-nav button:last-child,
.tabs-nav a:last-child {
  border-right: none;
}

.tabs-nav button.active {
  background: #D6D9E1;
  color: var(--color-text-primary);
  font-weight: 700;
}

.tabs-nav button:hover:not(.active) {
  background: rgba(0, 0, 0, 0.02);
}



.tabs-nav a.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
  transition: all 0.3s ease; /* Smooth transition for hover */
  position: relative; /* For overlay pseudo-element */
}

.tabs-nav a.btn-outline:hover {
  background: linear-gradient(135deg, #5a6fd0 0%, #6a4190 100%); /* Slightly darker colors */
}

.tabs-nav a.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1); /* Subtle dark overlay */
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: inherit; /* Matches button border-radius if any */
}

.tabs-nav a.btn-outline:hover::before {
  opacity: 1;
}

/* Mobile: Stack tabs vertically */
@media (max-width: 640px) {
  .tabs-nav {
    flex-direction: column;
  }
  
  .tabs-nav button,
  .tabs-nav a {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
  
  .tabs-nav button:last-child,
  .tabs-nav a:last-child {
    border-bottom: none;
  }
}

/* ---------- Tab Content ---------- */
.tab-content {
  display: none;
  padding: var(--space-6) var(--space-5);
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  line-height: 1.7;
}

.tab-content.active {
  display: block;
}


/* ---------- FAQs - Accordion Style ---------- */
.faqs {
  margin-top: var(--space-10);
  padding: var(--space-6);
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.faqs h2 {
  font-size: 1.3rem;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-border);
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-3);
  overflow: hidden;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4);
  background: var(--color-bg-soft);
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #e8eaf0;
}

.faq-question h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f3a8a;
  margin: 0;
  flex: 1;
}

.faq-icon {
  font-size: 1.2rem;
  color: #1f3a8a;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: var(--space-3);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-body);
  margin: 0;
}


/* =========================================================
   COMPACT MODERN BUY NOW (NEW LOGIC)
   ========================================================= */

.pricing-box {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 6px 16px rgba(0,0,0,0.06);
}

/* Header */
.pricing-header h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

/* Pricing rows container */
.pricing-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Single pricing row */
.pricing-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: #ffffff;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.pricing-row:hover {
  background: var(--color-bg-soft);
  border-color: #c7d2fe;
}

/* Radio */
.pricing-row input {
  margin-top: 2px;
}

/* License + info */
.pricing-main {
  display: flex;
  align-items: center;
  gap: 6px;
}

.license-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

/* Price */
.pricing-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f3a8a;
  white-space: nowrap;
}

/* Buy button */
.pricing-buy-btn {
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  font-size: 0.9rem;
}

/* =========================================================
   INFO ICON + TOOLTIP
   ========================================================= */

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  background: var(--color-bg-soft);
  color: var(--color-text-muted);
  cursor: pointer;
  position: relative;
}

/* =========================================================
   HTML TOOLTIP (SUPPORTS <br>)
   ========================================================= */

/* =========================================================
   INFO ICON + HTML TOOLTIP (FINAL)
   ========================================================= */

/* Info icon base */
.info-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  background: var(--color-bg-soft);
  color: var(--color-text-muted);
  cursor: pointer;
  flex-shrink: 0;
}

/* Tooltip container (HTML-based, supports <br>) */
.info-icon .tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #111827;
  color: #ffffff;
  font-size: 0.72rem;
  line-height: 1.5;
  padding: 8px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 50;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Tooltip arrow */
.info-icon .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #111827;
}

/* Show tooltip on hover */
.info-icon:hover .tooltip {
  opacity: 1;
}




/* =========================================================
   INFO BLOCKS
   ========================================================= */

.info-box {
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  margin-top: var(--space-1);
}

.info-box h4 {
  font-size: 0.95rem;
  margin-bottom: var(--space-1);
}

.info-box li {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

/* =========================================================
   Modern Sample Form Pop-Up
   ========================================================= */

.sample-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.sample-popup {
  background: white;
  padding: 35px;
  border-radius: 16px;
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: popupFadeIn 0.4s ease;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.popup-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.popup-close:hover {
  color: #dc3545;
  background: #f8f9fa;
}

.sample-popup h3 {
  margin: 0 0 10px 0;
  color: #2c3e50;
  font-size: 24px;
  font-weight: 600;
}

.sample-popup p {
  color: #666;
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.6;
}

.sample-popup .form-group {
  margin-bottom: 15px;
}

.sample-popup .form-group input,
.sample-popup .form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s;
}

.sample-popup .form-group input:focus,
.sample-popup .form-group select:focus {
  outline: none;
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40,167,69,0.1);
}

.sample-popup .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s;
  resize: vertical;
  font-family: inherit;
  min-height: 80px;
}

.sample-popup .form-group textarea:focus {
  outline: none;
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40,167,69,0.1);
}

.sample-popup .btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(45deg, #28a745, #20c997);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}

.sample-popup .btn:hover {
  background: linear-gradient(45deg, #218838, #1ea085);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40,167,69,0.3);
}

.sample-popup .btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

#popupFormMessage {
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 13px;
  display: none;
}

.sample-popup .form-group input.error,
.sample-popup .form-group select.error {
  border-color: #dc3545;
}

/* ================= TOP ACCENT BAR ================= */

.has-accent {
  position: relative;
  overflow: hidden; /* ensures clean rounded corners */
}

.has-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    #1f3a8a,
    #3b82f6
  );
}




/* ============================================
   PROFESSIONAL SAMPLE FORM STYLES
   ============================================ */

.sample-box {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-5) var(--space-8);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sample-header {
  text-align: center;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 2px solid #f0f0f0;
}

.sample-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: var(--space-3);
}

.sample-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Form Grid Layout */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.form-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

/* Form Groups */
.form-group,
.form-group-full {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  margin-bottom: var(--space-5);
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
}

.required {
  color: #e74c3c;
  margin-left: 4px;
  font-weight: 700;
}

/* Form Inputs */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: #333;
  background: #ffffff;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary, #2563eb);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: #c0c0c0;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 45px;
  appearance: none;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
  line-height: 1.6;
}

/* Checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--color-primary, #2563eb);
}

.checkbox-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.checkbox-text a {
  color: var(--color-primary, #2563eb);
  text-decoration: underline;
}

/* Form Actions */
.form-actions {
  margin-top: var(--space-6);
  text-align: center;
}

.btn-large {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
  transition: all 0.3s ease;
}

.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.btn-large:active {
  transform: translateY(0);
}

.form-note {
  margin-top: var(--space-4);
  font-size: 13px;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sample-box {
    padding: var(--space-6) var(--space-4);
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .form-column {
    gap: var(--space-4);
  }

  .sample-header h2 {
    font-size: 24px;
  }

  .sample-header p {
    font-size: 14px;
  }

  .btn-large {
    width: 100%;
    min-width: auto;
  }
}

/* Input Validation States */
.form-input:invalid:not(:placeholder-shown),
.form-select:invalid:not(:placeholder-shown) {
  border-color: #e74c3c;
}

.form-input:valid:not(:placeholder-shown),
.form-select:valid:not(:placeholder-shown) {
  border-color: #27ae60;
}

/* Loading State */
.form-input:disabled,
.form-select:disabled,
.form-textarea:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Placeholder Styling */
.form-input::placeholder,
.form-textarea::placeholder {
  color: #999;
  opacity: 1;
}

/* Focus Visible for Accessibility */
.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid var(--color-primary, #2563eb);
  outline-offset: 2px;
}

/* Table of Content */
.toc-para{
  color: #2c4964;
  text-align: justify;
  font-size: 15px;
  line-height: 25px;
  font-weight: 600;
}

.toc1 li {
    list-style-type: none;
  color: #1c1c1c;
  font-size: 15px;
   line-height: 32px;
}

.toc2 li {
  list-style-type: disc;
  color: #1c1c1c;
  font-size: 15px;
   line-height: 32px;
}

/* Report Description Table Design */
.report-scope-table {
    width: 98%;
    margin: 10px auto;
    margin-bottom: 15px;
    border-collapse: collapse;
    border: 1px solid #e1e1e1;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.report-scope-table th, .report-scope-table td {
    padding: 10px;
    padding-left: 25px;
    text-align: left;
    border: 1px solid #e1e1e1;
    line-height: 1.6;
}

.report-scope-table th {
    background-color: #f4f4f4;
    font-weight: bold;
    text-align: center;
    color: #1c1c1c;
    font-size: 15px;
}

.report-scope-table td {
    color: #1c1c1c;
    font-size: 14px;
}

.report-scope-table tr:nth-child(even) {
    background-color: #fafafa;
}

.report-scope-table tr:hover {
    background-color: #f1f1f1;
    transition: background-color 0.3s ease;
}

.report-scope-table td strong {
    color: #1c1c1c;
}

/* Column width adjustments */
.report-scope-table td:first-child,
.report-scope-table th:first-child {
    width: 40%;
}

.report-scope-table td:last-child,
.report-scope-table th:last-child {
    width: 60%;
}


/* REPORT THUMBNAIL */

.report-thumb {
  flex-shrink: 0;
  width: 120px;
  height: 160px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.08);
}

.ffc-cover {
    width: 100%;
    height: 100%;
    /* SIMPLE PROFESSIONAL GRADIENT */
    background: linear-gradient(145deg, 
        #1e293b 0%,    /* Clean Dark Slate */
        #334155 50%,   /* Professional Steel */
        #475569 100%   /* Subtle Gray-Blue */
    );
    border-radius: inherit;
    padding: 0;
    color: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Clean content layout */
.ffc-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 12px 12px 10px;
    justify-content: space-between;
    gap: 6px;
}

/* Simple header */
.ffc-header {
    font-size: 0.55rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    font-weight: 500;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Clean typography - VERTICAL STACK (FIXED) */
.ffc-title {
    flex-shrink: 0;
}

.ffc-title .line1 {
    font-size: 0.76rem;
    font-weight: 300;
    color: white;
    line-height: 1.4;
    letter-spacing: -0.01em;
    display: block;
    margin-bottom: 3px;  /* Proper spacing */
}

.ffc-title .line2 {
    font-size: 0.87rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: white;
    display: block;
    margin-bottom: 2px;  /* Proper spacing */
}

/* REPORT as separate element - NO DUPLICATION */
.ffc-title .line3 {
    font-size: 0.87rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: white;
    display: block;
}


/* Simple accent */
.ffc-accent {
    width: 35%;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 1px;
    flex-shrink: 0;
}

/* Minimal footer */
.ffc-footer {
    padding-top: 8px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-shrink: 0;
}

.ffc-date .year {
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
    color: white;
    letter-spacing: -0.02em;
}

/* Responsive */
@media (max-width: 480px) {
    .report-thumb {
        width: 100px;
        height: 134px;
    }
}



/* =========================================================
   METHODOLOGY – MODERN PROCESS DESIGN
   ========================================================= */


.methodology-modern {
  padding-top: 40px;
}

.method-header {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.method-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.method-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #6b7280;
}

/* Steps */

.method-steps {
  display: grid;
  gap: 20px;
}

.method-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 25px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #eef2f7;
  transition: 0.3s ease;
}

.method-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(17, 24, 39, 0.08);
}

.step-number {
  font-size: 28px;
  font-weight: 800;
  color: #3b82f6;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

/* Bottom Note */

.method-note {
  margin-top: 20px;
  padding: 30px;
  border-radius: 16px;
  background: #f8fafc;
  border-left: 4px solid #3b82f6;
  font-size: 15px;
  line-height: 1.7;
}
