/* DESIGN SYSTEM & VARIABLES */
:root {
  --bg-page: #F8F9FA;
  --bg-card: #FFFFFF;
  --bg-dark: #090D16;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --accent-primary: #FF4D2D;
  --accent-primary-hover: #E03E20;
  --accent-secondary: #1E40AF;
  --border-color: #E2E8F0;
  --border-dark: rgba(255, 255, 255, 0.08);
  
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.03);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  
  --radius-card: 16px;
  --radius-btn: 100px;
  --radius-input: 12px;
  --transition-default: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET & BASE STYLES */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-page);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  color: var(--text-dark);
  font-weight: 400;
}

h1 {
  font-family: var(--font-heading);
  font-size: 56px;
  line-height: 1.1;
}

h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1.2;
}

h3 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-default);
}

/* BUTTONS */
.btn-primary {
  background-color: var(--accent-primary);
  color: #FFFFFF;
  border-radius: var(--radius-btn);
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-default);
}

.btn-primary:hover {
  background-color: var(--accent-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 77, 45, 0.25);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 249, 250, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  transition: var(--transition-default);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.logo-text {
  color: var(--text-dark);
}

.logo-domain {
  color: var(--accent-primary);
}

.logo-brand.light .logo-text {
  color: #FFFFFF;
}

.header-search {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-input);
  padding: 8px 16px;
  width: 320px;
  transition: var(--transition-default);
}

.header-search:focus-within {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 4px rgba(255, 77, 45, 0.15);
}

.search-icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  opacity: 0.5;
}

.header-search input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-dark);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-primary);
  transform: scaleX(0);
  transition: var(--transition-default);
  transform-origin: right;
}

.nav-link:hover {
  color: var(--accent-primary);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* HERO SECTION */
.hero-section {
  padding: 70px 0 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.badge-tag {
  display: inline-block;
  background-color: rgba(255, 77, 45, 0.08);
  color: var(--accent-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-title {
  margin-bottom: 20px;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-search-box {
  display: flex;
  gap: 12px;
  background: #FFFFFF;
  padding: 8px;
  border-radius: 100px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  margin-bottom: 40px;
  max-width: 580px;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  padding-left: 16px;
}

.input-search-icon {
  width: 20px;
  height: 20px;
  opacity: 0.4;
  margin-right: 10px;
}

.hero-input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  font-family: var(--font-body);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-num {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
}

.stat-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background-color: var(--border-color);
}

.hero-media {
  display: flex;
  justify-content: center;
}

.media-card-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  width: 100%;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

/* SECTION HEADERS */
.section-header {
  margin-bottom: 48px;
}

.section-header.center {
  text-align: center;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-primary);
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
}

.section-subtext {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 8px;
}

/* SECTION 2: CATEGORIES */
.categories-section {
  padding: 80px 0;
  background-color: var(--bg-page);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: var(--transition-default);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(255, 77, 45, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cat-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.category-title {
  margin-bottom: 10px;
}

.category-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
  flex: 1;
}

.card-arrow-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
}

.arrow-icon {
  width: 18px;
  height: 18px;
  transition: var(--transition-default);
}

.category-card:hover .arrow-icon {
  transform: translateX(4px);
}

/* SECTION 3: GUIDES */
.guides-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.guides-asymmetric-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
}

.guide-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-default);
}

.guide-img-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.guide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.guide-card:hover .guide-img {
  transform: scale(1.05);
}

.category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--bg-card);
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.guide-content {
  padding: 24px;
}

.guide-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.guide-title-large {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 12px;
}

.guide-title-small {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.guide-excerpt {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.read-more-btn {
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 14px;
}

.guides-column-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* SECTION 4: COMPARATIVE TAB CHECKLIST */
.checklist-section {
  padding: 80px 0;
  background: var(--bg-page);
}

.tab-navigation {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-default);
}

.tab-icon {
  width: 18px;
  height: 18px;
}

.tab-btn:hover {
  background: var(--bg-page);
}

.tab-btn.active {
  background: var(--text-dark);
  color: #FFFFFF;
  border-color: var(--text-dark);
}

.tab-btn.active .tab-icon {
  filter: brightness(0) invert(1);
}

.tab-content-container {
  background: #FFFFFF;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-color);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.pane-title {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 12px;
}

.pane-desc {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.checklist-list {
  list-style: none;
  margin-bottom: 32px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
  border-radius: 8px;
  transition: var(--transition-default);
  margin-bottom: 8px;
}

.check-item:hover {
  background-color: rgba(255, 77, 45, 0.03);
}

.check-icon-box {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(255, 77, 45, 0.1);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist-image-box {
  border-radius: 12px;
  overflow: hidden;
}

.tab-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* SECTION 5: WELCOME SEO */
.welcome-seo-section {
  background: #FFFFFF;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 80px 0;
  text-align: center;
}

.welcome-title {
  margin-bottom: 24px;
}

.welcome-body {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inline-link {
  color: var(--text-dark);
  text-decoration: underline;
  font-weight: 500;
}

.inline-link:hover {
  color: var(--accent-primary);
}

/* SECTION 6: FOOTER */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 40px 0;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about-text {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col-title {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-light);
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-divider {
  height: 1px;
  background-color: var(--border-dark);
  margin: 40px 0;
}

.footer-disclaimer-box {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 40px;
}

.disclaimer-text {
  font-size: 12px;
  color: #64748B;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-policy-links {
  display: flex;
  gap: 20px;
}

.footer-policy-links a {
  color: var(--text-light);
}

.footer-policy-links a:hover {
  color: #FFFFFF;
}

/* SECTION 7: COOKIE MODAL WIDGET */
.cookie-modal {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  max-width: 380px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  padding: 20px;
  color: #FFFFFF;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.cookie-modal.visible {
  transform: translateX(0);
  opacity: 1;
}

.cookie-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.cookie-text {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.btn-cookie-accept {
  background-color: var(--accent-primary);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-default);
}

.btn-cookie-accept:hover {
  filter: brightness(1.1);
}

.btn-cookie-prefs {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition-default);
}

.btn-cookie-prefs:hover {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

/* SCROLL REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  h1 { font-size: 42px; }
  h2 { font-size: 30px; }
  
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .guides-asymmetric-grid {
    grid-template-columns: 1fr;
  }
  
  .tab-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-search,
  .main-nav {
    display: none;
  }
  
  .hero-search-box {
    flex-direction: column;
    border-radius: var(--radius-card);
    padding: 12px;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .tab-navigation {
    flex-direction: column;
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* PREFERS REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .cookie-modal {
    transition: none !important;
  }
}
/* Inner page styles */
/* INNER PAGE SPECIFIC STYLES */
.article-page-main {
  padding-bottom: 80px;
}

/* BREADCRUMBS */
.breadcrumbs-bar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  margin-bottom: 40px;
}

.breadcrumbs-nav {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumbs-nav a:hover {
  color: var(--accent-primary);
}

.crumb-separator {
  color: var(--text-light);
}

.crumb-current {
  color: var(--text-dark);
  font-weight: 500;
}

/* ARTICLE HEADER */
.article-header {
  margin-bottom: 32px;
}

.article-main-title {
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1.15;
  color: var(--text-dark);
  margin: 16px 0 24px 0;
}

.article-meta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  display: block;
  font-size: 14px;
  color: var(--text-dark);
}

.author-role {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

.meta-details {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-icon {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

/* FEATURED & INLINE IMAGES */
.article-featured-media {
  margin-bottom: 40px;
}

.article-hero-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.image-caption {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

.article-inline-media {
  margin: 36px 0;
}

.article-inline-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

/* TABLE OF CONTENTS */
.toc-box {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-primary);
  border-radius: var(--radius-card);
  padding: 24px 32px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}

.toc-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  display: block;
  margin-bottom: 16px;
}

.toc-list {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toc-list li a {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.toc-list li a:hover {
  color: var(--accent-primary);
  text-decoration: underline;
}

/* ARTICLE BODY TYPOGRAPHY (H1-H6, P, SPAN, A) */
.article-body-content {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 48px;
  box-shadow: var(--shadow-card);
  margin-bottom: 48px;
}

.article-body-content h1,
.article-body-content h2,
.article-body-content h3,
.article-body-content h4,
.article-body-content h5,
.article-body-content h6 {
  color: var(--text-dark);
  margin-top: 36px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.article-body-content h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.article-body-content h3 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
}

.article-body-content h4 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
}

.article-body-content h5 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-secondary);
}

.article-body-content h6 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.article-body-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 20px;
}

.article-body-content span {
  color: inherit;
}

.highlight-text {
  background-color: rgba(255, 77, 45, 0.1);
  color: var(--accent-primary-hover);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.article-inline-link {
  color: var(--accent-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-inline-link:hover {
  color: var(--accent-primary-hover);
}

/* LISTS (UL, OL) */
.styled-ordered-list,
.styled-unordered-list {
  margin: 20px 0 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.styled-ordered-list li,
.styled-unordered-list li {
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
}

.styled-unordered-list {
  list-style-type: square;
}

.styled-unordered-list li::marker {
  color: var(--accent-primary);
}

/* TABLE STYLES */
.table-wrapper {
  overflow-x: auto;
  margin: 32px 0;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.custom-article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  text-align: left;
  background: #FFFFFF;
}

.custom-article-table th,
.custom-article-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-color);
}

.custom-article-table th {
  background: var(--bg-page);
  font-weight: 700;
  color: var(--text-dark);
}

.custom-article-table tbody tr:nth-child(even) {
  background-color: #F8FAFC;
}

.custom-article-table tbody tr:hover {
  background-color: #F1F5F9;
}

.status-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.status-tag.high {
  background: #DCFCE7;
  color: #166534;
}

.status-tag.medium {
  background: #FEF9C3;
  color: #854D0E;
}

.status-tag.low {
  background: #FEE2E2;
  color: #991B1B;
}

/* INLINE CONTACT BANNER */
.inline-contact-card {
  background: linear-gradient(135deg, #090D16 0%, #1E293B 100%);
  color: #FFFFFF;
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card-content h3 {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 6px;
}

.contact-card-content p {
  color: var(--text-light);
  font-size: 14px;
}

/* RELATED ARTICLES */
.related-articles-section {
  margin-bottom: 56px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-default);
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.related-img-box {
  position: relative;
  aspect-ratio: 16 / 10;
}

.related-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
}

.related-body {
  padding: 20px;
}

.related-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.related-title a:hover {
  color: var(--accent-primary);
}

.related-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* COMMENTS SECTION & FORM */
.comments-section {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-card);
  margin-bottom: 48px;
}

.comments-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 32px;
}

.comments-title {
  font-family: var(--font-heading);
  font-size: 26px;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.comment-item {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.comment-avatar-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(30, 64, 175, 0.1);
  color: var(--accent-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.comment-meta {
  margin-bottom: 6px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.comment-author {
  font-size: 15px;
  color: var(--text-dark);
}

.comment-date {
  font-size: 12px;
  color: var(--text-muted);
}

.comment-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* FORM SYSTEM (COMMENTS & CONTACT) */
.comment-form-wrapper {
  background: var(--bg-page);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border-color);
}

.form-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-input);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: #FFFFFF;
  transition: var(--transition-default);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(255, 77, 45, 0.15);
}

.form-checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-muted);
}

.form-checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent-primary);
}

/* CONTACT FORM SECTION */
.contact-form-section {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.contact-box-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
}

.contact-info-side {
  background: var(--bg-dark);
  color: #FFFFFF;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-side-title {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 28px;
  margin: 12px 0 16px 0;
}

.contact-side-desc {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-light);
}

.contact-icon {
  width: 20px;
  height: 20px;
}

.contact-form-side {
  padding: 40px;
}

/* RESPONSIVE FOR INNER PAGE */
@media (max-width: 992px) {
  .article-main-title {
    font-size: 34px;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-box-wrapper {
    grid-template-columns: 1fr;
  }
  
  .inline-contact-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .article-body-content {
    padding: 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .article-meta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}
.trusted-sources-section {
  padding: 72px 20px;
  background: #f4f7fb;
}

.trusted-sources-container {
  max-width: 1180px;
  margin: 0 auto;
}

.trusted-sources-content {
  background: #ffffff;
  border: 1px solid #dbe4ef;
  border-radius: 28px;
  padding: 44px;
  box-shadow: 0 18px 45px rgba(15, 34, 56, 0.08);
}

.trusted-sources-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1f6f8b;
}

.trusted-sources-title {
  margin: 0 0 16px;
  max-width: 780px;
  font-size: 34px;
  line-height: 1.18;
  font-weight: 800;
  color: #102033;
}

.trusted-sources-text {
  margin: 0 0 30px;
  max-width: 860px;
  font-size: 17px;
  line-height: 1.7;
  color: #4b5c6f;
}

.trusted-sources-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.trusted-source-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 24px;
  border: 1px solid #dbe4ef;
  border-radius: 22px;
  background: #f9fbfe;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.trusted-source-card:hover {
  transform: translateY(-4px);
  border-color: #1f6f8b;
  box-shadow: 0 16px 34px rgba(15, 34, 56, 0.12);
}

.trusted-source-kicker {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #1f6f8b;
}

.trusted-source-name {
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 1.3;
  color: #102033;
}

.trusted-source-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #546579;
}

.trusted-sources-note {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid #dbe4ef;
  font-size: 14px;
  line-height: 1.7;
  color: #66778a;
}

@media (max-width: 900px) {
  .trusted-sources-grid {
    grid-template-columns: 1fr;
  }

  .trusted-sources-content {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .trusted-sources-title {
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .trusted-sources-section {
    padding: 48px 16px;
  }

  .trusted-sources-content {
    padding: 26px 18px;
  }

  .trusted-sources-title {
    font-size: 24px;
  }

  .trusted-source-card {
    min-height: auto;
    padding: 20px;
  }
}