/* ============================================
   Marketing AI Pulse — Design System v3
   News-site style: Calcalist Tech / Geektime
   Dense, text-first, narrower container
   ============================================ */

:root {
  --navy: #1B2F5E;
  --navy-deep: #002A47;
  --coral: #E8735A;
  --coral-bright: #FF7361;
  --coral-soft: #FFE8E2;
  --pulse-cyan: #5cc5e8;
  --white: #FFFFFF;
  --cream: #FAFAF7;
  --bg-soft: #F7F7F8;
  --gray-50: #F7F8FA;
  --gray-100: #EEF0F4;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --text-secondary: #5A6275;
  --line: #EDEDED;

  --font-body: 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1180px;
  --radius-sm: 6px;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.06);
  --shadow: 0 4px 16px rgba(27, 47, 94, 0.08);
  --transition: 150ms ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--gray-50);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--coral); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ============================================
   BREAKING NEWS TICKER
   ============================================ */

.ticker {
  background: var(--navy-deep);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
  overflow: hidden;
  position: relative;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.ticker-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--coral);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.ticker-label .dot-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--white);
  animation: blink 1.6s infinite;
}
.ticker-content {
  flex: 1;
  display: flex;
  gap: 32px;
  white-space: nowrap;
  overflow: hidden;
}
.ticker-item {
  color: var(--white);
  opacity: 0.92;
  font-weight: 500;
}
.ticker-item:hover { color: var(--coral-soft); }
.ticker-item .time {
  color: var(--coral);
  font-weight: 700;
  margin-left: 8px;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.logo img { height: 38px; width: auto; }
.main-nav { display: flex; gap: 22px; align-items: center; }
.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { border-bottom-color: var(--coral); color: var(--coral); }
.header-actions { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary { background: var(--coral); color: var(--white); }
.btn-primary:hover { background: var(--coral-bright); color: var(--white); }
.search-toggle {
  background: var(--gray-50);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.search-toggle:hover { background: var(--coral-soft); color: var(--coral); }

/* ============================================
   DAILY PULSE WIDGET (compact)
   ============================================ */

.daily-pulse-section { padding: 16px 0 8px; }
.daily-pulse {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--gray-100);
}
.pulse-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 10px;
}
.pulse-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}
.pulse-title .ic {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--coral), var(--pulse-cyan));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px;
}
.pulse-title small { font-size: 12px; font-weight: 500; color: var(--text-secondary); }
.pulse-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  color: #c0473a; background: #ffeae6;
  border: 1px solid #ffd2ca;
  padding: 4px 10px; border-radius: 999px;
}
.pulse-live .dot-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral);
  animation: blink 1.6s infinite;
}
.pulse-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 12px;
}
.pulse-card {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.pulse-card-h {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.pulse-card-h .tag { color: var(--coral); }
.pulse-item {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.pulse-item:first-child { padding-top: 0; }
.pulse-item:last-child { border-bottom: none; padding-bottom: 0; }
.pulse-item:hover .ttl { color: var(--coral); }
.pulse-item .meta-row { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.pulse-item .cat { font-size: 10px; font-weight: 800; color: var(--coral); text-transform: uppercase; letter-spacing: 0.5px; }
.pulse-item .rank { font-size: 10px; font-weight: 700; color: var(--gray-500); }
.pulse-item .ttl { font-size: 13px; font-weight: 700; line-height: 1.4; color: var(--navy); margin-bottom: 3px; }
.pulse-item .why { font-size: 11.5px; color: var(--text-secondary); line-height: 1.5; }
.pulse-item .why b { color: var(--navy); }
.pulse-tool { display: flex; flex-direction: column; height: 100%; }
.pulse-tool .tname { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.pulse-tool .tcat { font-size: 11px; color: var(--text-secondary); margin-bottom: 10px; }
.pulse-tool .tverdict { font-size: 12px; line-height: 1.55; color: var(--gray-700); background: var(--white); border-radius: 6px; padding: 10px; margin-bottom: 10px; flex: 1; }
.pulse-cta {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(to left, var(--coral), var(--coral-bright));
  padding: 9px;
  border-radius: 6px;
}
.pulse-cta:hover { filter: brightness(1.08); color: var(--white); }
.pulse-quiz .q { font-size: 13px; font-weight: 700; line-height: 1.45; color: var(--navy); margin-bottom: 12px; }
.pulse-quiz .opts { display: flex; flex-direction: column; gap: 7px; }
.pulse-quiz .opt {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  text-align: start;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 12px;
  cursor: pointer;
}
.pulse-quiz .opt:hover { border-color: var(--coral); background: #fff7f5; }

/* ============================================
   MAIN LAYOUT
   ============================================ */

.main-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  padding: 20px 0 48px;
}

main { min-width: 0; }

/* ============================================
   LEAD SECTION (Calcalist style - big + list)
   ============================================ */

.lead-section {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  margin-bottom: 28px;
}
.lead-main {
  display: flex;
  flex-direction: column;
}
.lead-main .image {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--coral) 100%);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.lead-main .cat-badge { margin-bottom: 10px; }
.lead-main h1 {
  font-size: 26px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.lead-main h1:hover { color: var(--coral); }
.lead-main .excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  line-height: 1.55;
}
.lead-main .meta { font-size: 12px; }

.lead-list {
  display: flex;
  flex-direction: column;
  border-right: 2px solid var(--coral);
  padding-right: 16px;
}
.lead-list-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.lead-list-item {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.lead-list-item:first-of-type { padding-top: 0; }
.lead-list-item:last-of-type { border-bottom: none; }
.lead-list-item:hover h3 { color: var(--coral); }
.lead-list-item .cat-badge { margin-bottom: 6px; font-size: 10px; padding: 2px 8px; }
.lead-list-item h3 {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 4px;
}
.lead-list-item .meta { font-size: 11.5px; gap: 6px; }

/* ============================================
   CATEGORY/SECTION BLOCKS (news-list style)
   ============================================ */

.news-section {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  padding: 20px;
  margin-bottom: 20px;
}

.news-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--coral);
}
.news-section-header h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}
.news-section-header .sec-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.news-section-header h2.cat-ai .sec-icon { background: var(--coral-soft); }
.news-section-header h2.cat-seo .sec-icon { background: #DBEAFE; }
.news-section-header h2.cat-social .sec-icon { background: #E0E7FF; }
.news-section-header h2.cat-analytics .sec-icon { background: #D1FAE5; }
.news-section-header h2.cat-news .sec-icon { background: #FEE2E2; }
.news-section-header h2.cat-email .sec-icon { background: #FEF3C7; }
.news-section-header h2.cat-strategy .sec-icon { background: var(--gray-100); }
.news-section-header .link {
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
}

/* News list - small thumb + text */
.news-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}
.news-list.single-col { grid-template-columns: 1fr; }

.news-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  align-items: start;
  padding: 6px 0;
}
.news-item:hover h3 { color: var(--coral); }
.news-item .thumb {
  width: 100px;
  height: 70px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy) 0%, var(--coral) 100%);
  flex-shrink: 0;
}
.news-item.variant-1 .thumb { background: linear-gradient(135deg, #1B2F5E, #5B21B6); }
.news-item.variant-2 .thumb { background: linear-gradient(135deg, #E8735A, #FBBF24); }
.news-item.variant-3 .thumb { background: linear-gradient(135deg, #002A47, #06B6D4); }
.news-item.variant-4 .thumb { background: linear-gradient(135deg, #5B21B6, #E8735A); }
.news-item.variant-5 .thumb { background: linear-gradient(135deg, #1B2F5E, #94DAFF); }
.news-item.variant-6 .thumb { background: linear-gradient(135deg, #FF7361, #1B2F5E); }
.news-item .info { min-width: 0; }
.news-item .cat-badge { margin-bottom: 4px; font-size: 9.5px; padding: 2px 7px; }
.news-item h3 {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 4px;
}
.news-item .meta {
  font-size: 11.5px;
  color: var(--text-secondary);
  gap: 6px;
}

/* Featured-then-list variant (Calcalist exact style) */
.section-lead-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.section-lead {
  display: flex;
  flex-direction: column;
}
.section-lead .image {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--navy), var(--coral));
}
.section-lead h3 {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 6px;
}
.section-lead h3:hover { color: var(--coral); }
.section-lead .excerpt {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.5;
}
.section-side-list { display: flex; flex-direction: column; }
.section-side-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.section-side-item:first-child { padding-top: 0; }
.section-side-item:last-child { border-bottom: none; padding-bottom: 0; }
.section-side-item:hover h4 { color: var(--coral); }
.section-side-item .thumb {
  width: 70px;
  height: 50px;
  border-radius: 4px;
}
.section-side-item.variant-1 .thumb { background: linear-gradient(135deg, #1B2F5E, #5B21B6); }
.section-side-item.variant-2 .thumb { background: linear-gradient(135deg, #E8735A, #FBBF24); }
.section-side-item.variant-3 .thumb { background: linear-gradient(135deg, #002A47, #06B6D4); }
.section-side-item.variant-4 .thumb { background: linear-gradient(135deg, #5B21B6, #E8735A); }
.section-side-item h4 {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 3px;
}
.section-side-item .meta { font-size: 11px; }

/* Categories badges */
.cat-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--coral-soft);
  color: var(--coral);
}
.cat-badge.cat-ai { background: var(--coral-soft); color: var(--coral); }
.cat-badge.cat-seo { background: #DBEAFE; color: #1E40AF; }
.cat-badge.cat-social { background: #E0E7FF; color: #5B21B6; }
.cat-badge.cat-news { background: #FEE2E2; color: #991B1B; }
.cat-badge.cat-analytics { background: #D1FAE5; color: #065F46; }
.cat-badge.cat-email { background: #FEF3C7; color: #92400E; }
.cat-badge.cat-content { background: #FCE7F3; color: #9F1239; }
.cat-badge.cat-strategy { background: var(--gray-100); color: var(--navy); }

.meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}
.meta .author-name { font-weight: 600; color: var(--navy); }
.meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gray-300); }

/* ============================================
   SIDEBAR
   ============================================ */

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 18px;
}
.sidebar-widget.sticky {
  position: sticky;
  top: 84px;
}
.widget-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--coral);
}

.popular-list { display: flex; flex-direction: column; gap: 12px; }
.popular-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
}
.popular-item:hover h4 { color: var(--coral); }
.popular-item .num {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 1.5px var(--coral);
  color: transparent;
}
.popular-item h4 {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 2px;
}
.popular-item .views { font-size: 11px; color: var(--text-secondary); }

.trending-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.trending-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px 11px;
  background: var(--gray-50);
  color: var(--navy);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--gray-100);
}
.trending-tag:hover { background: var(--coral-soft); color: var(--coral); border-color: var(--coral-soft); }
.trending-tag .hot { color: var(--coral); font-size: 10px; }

.sidebar-newsletter {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 20px 18px;
  border: none;
  position: relative;
  overflow: hidden;
}
.sidebar-newsletter::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 115, 90, 0.3), transparent 70%);
}
.sidebar-newsletter h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.sidebar-newsletter p {
  font-size: 12.5px;
  opacity: 0.85;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}
.sidebar-newsletter input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: none;
  font-size: 13px;
  font-family: inherit;
  direction: rtl;
  margin-bottom: 8px;
  position: relative; z-index: 1;
}
.sidebar-newsletter button {
  width: 100%;
  padding: 10px;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  font-size: 13px;
  position: relative; z-index: 1;
}
.sidebar-newsletter button:hover { background: var(--coral-bright); }

/* Quiz widget - standalone */
.quiz-widget {
  background: linear-gradient(135deg, #fff7f5 0%, var(--coral-soft) 100%);
  border: 2px solid var(--coral);
  position: relative;
}
.quiz-widget .widget-title {
  color: var(--coral);
  border-bottom-color: var(--coral);
  display: flex;
  align-items: center;
  gap: 8px;
}
.quiz-widget .widget-title::before {
  content: '?';
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}
.quiz-widget .quiz-q {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 14px;
}
.quiz-widget .quiz-opts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.quiz-widget .quiz-opt {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  text-align: start;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--coral-soft);
  border-radius: 8px;
  padding: 11px 14px;
  cursor: pointer;
  transition: all var(--transition);
}
.quiz-widget .quiz-opt:hover {
  border-color: var(--coral);
  background: var(--white);
  transform: translateX(-2px);
  box-shadow: -2px 2px 0 var(--coral);
}
.quiz-widget .quiz-meta {
  font-size: 11.5px;
  color: var(--text-secondary);
  text-align: center;
  padding-top: 8px;
  border-top: 1px dashed var(--coral-soft);
}
.quiz-widget .quiz-meta strong { color: var(--coral); }

.tool-card-sidebar { text-align: center; }
.tool-card-sidebar .tlogo {
  width: 56px; height: 56px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--coral), var(--coral-bright));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 24px; font-weight: 900;
}
.tool-card-sidebar .tname { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.tool-card-sidebar .tcat { font-size: 11px; color: var(--text-secondary); margin-bottom: 10px; }
.tool-card-sidebar .verdict {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 12px;
  text-align: right;
  padding: 10px;
  background: var(--bg-soft);
  border-radius: 6px;
}

/* ============================================
   ARTICLE PAGE (v3 - dense magazine style)
   ============================================ */

.article-page-v3 {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  padding: 28px 36px;
}

.breadcrumbs {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.breadcrumbs a { color: var(--text-secondary); }
.breadcrumbs a:hover { color: var(--coral); }
.breadcrumbs span.sep { margin: 0 6px; color: var(--gray-300); }

.article-header { margin-bottom: 20px; }
.article-header .cat-badge { margin-bottom: 12px; }
.article-header h1 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.article-header .subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.5;
}
.article-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.article-meta-bar .author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-meta-bar .author-info img {
  width: 36px; height: 36px;
  border-radius: 50%;
}
.article-meta-bar .author-info .name {
  font-weight: 700;
  color: var(--navy);
  font-size: 13px;
}
.article-meta-bar .author-info .role-mini {
  font-size: 11px;
  color: var(--text-secondary);
}
.article-meta-bar .reading-info {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex; align-items: center; gap: 12px;
}
.article-share {
  display: flex;
  gap: 6px;
}
.share-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gray-50);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--navy);
  transition: all var(--transition);
}
.share-btn:hover { background: var(--coral); color: var(--white); }

.article-cover {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--coral));
  margin-bottom: 28px;
}

.article-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray-700);
}
.article-body h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin: 36px 0 14px;
}
.article-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 12px;
}
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 18px 24px 18px 0; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--coral); text-decoration: underline; text-underline-offset: 2px; }
.article-body blockquote {
  border-right: 4px solid var(--coral);
  padding: 14px 20px;
  background: var(--bg-soft);
  margin: 28px 0;
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  border-radius: var(--radius-sm);
}
.article-body .callout {
  background: var(--coral-soft);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 28px 0;
  border-right: 4px solid var(--coral);
}
.article-body .callout strong { color: var(--coral); }

.dos-donts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.do-box, .dont-box {
  padding: 20px;
  border-radius: var(--radius-sm);
}
.do-box {
  background: #D1FAE5;
  border-right: 4px solid #065F46;
}
.do-box h4 { color: #065F46; margin-bottom: 10px; font-size: 16px; }
.do-box ul, .dont-box ul { margin: 0; padding-right: 18px; }
.do-box li, .dont-box li { font-size: 14px; line-height: 1.55; }
.dont-box {
  background: #FEE2E2;
  border-right: 4px solid #991B1B;
}
.dont-box h4 { color: #991B1B; margin-bottom: 10px; font-size: 16px; }

.author-box-v3 {
  margin: 40px 0 28px;
  padding: 20px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  border-right: 3px solid var(--coral);
}
.author-box-v3 img {
  width: 64px; height: 64px;
  border-radius: 50%;
}
.author-box-v3 h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 3px;
}
.author-box-v3 .role {
  color: var(--coral);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}
.author-box-v3 p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   AUTHOR PAGE (v3)
   ============================================ */

.author-hero-v3 {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  padding: 32px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: center;
}
.author-hero-v3 img {
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 4px solid var(--coral-soft);
}
.author-hero-v3 h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.author-hero-v3 .role {
  color: var(--coral);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}
.author-hero-v3 .bio {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}
.author-hero-v3 .expertise-tags {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.author-hero-v3 .expertise-tags span {
  padding: 4px 12px;
  background: var(--coral-soft);
  color: var(--coral);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
}

.author-stats-v3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  padding: 18px;
  margin-bottom: 20px;
}
.author-stats-v3 .stat-v3 {
  text-align: center;
  padding: 8px;
  border-left: 1px solid var(--gray-100);
}
.author-stats-v3 .stat-v3:first-child { border-left: none; }
.author-stats-v3 .stat-v3 .num {
  font-size: 26px;
  font-weight: 900;
  color: var(--coral);
  display: block;
  line-height: 1;
}
.author-stats-v3 .stat-v3 .label {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ============================================
   CATEGORY PAGE
   ============================================ */

.category-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.category-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 115, 90, 0.25), transparent 70%);
}
.category-hero .cat-icon-lg {
  width: 80px; height: 80px;
  border-radius: 20px;
  background: var(--coral);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  position: relative; z-index: 1;
}
.category-hero .cat-info {
  position: relative; z-index: 1;
}
.category-hero h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 4px;
}
.category-hero p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.55;
  max-width: 540px;
}
.category-hero .cat-stats {
  display: flex;
  gap: 24px;
  position: relative; z-index: 1;
}
.category-hero .stat-mini {
  text-align: center;
}
.category-hero .stat-mini .num {
  font-size: 24px;
  font-weight: 800;
  color: var(--coral);
  display: block;
  line-height: 1;
}
.category-hero .stat-mini .label {
  font-size: 11px;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Filter bar */
.filter-bar {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.filter-bar .filter-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.filter-tabs {
  display: flex;
  gap: 6px;
  flex: 1;
}
.filter-tab {
  padding: 6px 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-tab:hover { border-color: var(--coral); color: var(--coral); }
.filter-tab.active {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.filter-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
}
.filter-sort select {
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 5px 10px;
  font-family: inherit;
  font-size: 12.5px;
  color: var(--navy);
  cursor: pointer;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 28px 0 0;
}
.pagination button, .pagination a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: 6px;
  color: var(--navy);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition);
}
.pagination a:hover { border-color: var(--coral); color: var(--coral); }
.pagination .active {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.pagination .ellipsis {
  border: none;
  background: none;
  cursor: default;
}

/* ============================================
   FAQ PAGE
   ============================================ */

.faq-hero {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  padding: 32px;
  margin-bottom: 20px;
  text-align: center;
}
.faq-hero h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.faq-hero p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 20px;
}
.faq-search {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.faq-search input {
  width: 100%;
  padding: 12px 44px 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 100px;
  font-family: inherit;
  font-size: 14px;
  direction: rtl;
}
.faq-search input:focus { outline: none; border-color: var(--coral); }
.faq-search::before {
  content: '🔍';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
}

.faq-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}
.faq-cat {
  padding: 6px 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}
.faq-cat:hover, .faq-cat.active {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.faq-group {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  padding: 20px;
  margin-bottom: 16px;
}
.faq-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--coral);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  padding: 14px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--coral); }
.faq-question .toggle {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question .toggle { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 16px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-secondary);
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p { margin-bottom: 8px; }
.faq-answer strong { color: var(--navy); }

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  padding: 28px;
}
.contact-form-wrap h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form-wrap .desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 22px;
}

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group label .req { color: var(--coral); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--navy);
  direction: rtl;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.submit-btn {
  width: 100%;
  padding: 13px;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
}
.submit-btn:hover { background: var(--coral-bright); transform: translateY(-1px); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  padding: 22px;
}
.info-card .info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--coral-soft);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}
.info-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.info-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 8px;
}
.info-card a {
  color: var(--coral);
  font-weight: 600;
  font-size: 13.5px;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.social-row a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--gray-50);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.social-row a:hover { background: var(--coral); color: var(--white); }

/* ============================================
   AUTHOR PAGE - additions
   ============================================ */

.author-social {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.author-social a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.author-social a:hover { border-color: var(--coral); color: var(--coral); }
.author-follow {
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--coral-soft);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.author-follow:hover { background: var(--coral); color: var(--white); }

.featured-articles {
  background: linear-gradient(135deg, var(--cream) 0%, var(--coral-soft) 100%);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  border-right: 4px solid var(--coral);
}
.featured-articles h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.featured-articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.featured-art-item {
  background: var(--white);
  border-radius: 8px;
  padding: 14px;
  transition: all var(--transition);
}
.featured-art-item:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.featured-art-item .badge {
  font-size: 10px;
  font-weight: 800;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: inline-block;
}
.featured-art-item h4 {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 6px;
}
.featured-art-item:hover h4 { color: var(--coral); }
.featured-art-item .stat {
  font-size: 11px;
  color: var(--text-secondary);
}

.subscribe-author {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.subscribe-author::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 115, 90, 0.3), transparent 70%);
}
.subscribe-author .text {
  position: relative; z-index: 1;
}
.subscribe-author h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}
.subscribe-author p {
  font-size: 13px;
  opacity: 0.85;
}
.subscribe-author button {
  position: relative; z-index: 1;
  background: var(--coral);
  color: var(--white);
  border: none;
  padding: 11px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.subscribe-author button:hover { background: var(--coral-bright); }

/* ============================================
   CATEGORY PAGE - additions
   ============================================ */

.category-featured {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  padding: 24px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: center;
}
.category-featured .feat-image {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy), var(--coral));
}
.category-featured .feat-content .badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.category-featured .star-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--coral);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.category-featured h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}
.category-featured h2:hover { color: var(--coral); }
.category-featured .excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.in-category-widget {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  padding: 18px;
}
.in-category-widget h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.in-category-widget .author-mini-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.in-category-widget .author-mini-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 5px;
  background: var(--bg-soft);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
}
.in-category-widget .author-mini-chip img {
  width: 22px; height: 22px;
  border-radius: 50%;
}
.in-category-widget .author-mini-chip:hover { background: var(--coral-soft); color: var(--coral); }

/* ============================================
   FAQ PAGE - additions
   ============================================ */

.faq-most-asked {
  background: linear-gradient(135deg, var(--cream) 0%, var(--coral-soft) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--coral);
  padding: 24px;
  margin-bottom: 20px;
}
.faq-most-asked h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.most-asked-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.most-asked-item {
  background: var(--white);
  padding: 12px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
}
.most-asked-item:hover {
  border-color: var(--coral);
  transform: translateX(-2px);
}
.most-asked-item .q-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.faq-helpful {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--gray-200);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
}
.faq-helpful .helpful-q {
  color: var(--text-secondary);
  font-weight: 500;
}
.faq-helpful button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
}
.faq-helpful button:hover { border-color: var(--coral); color: var(--coral); }
.faq-helpful .yes:hover { background: #D1FAE5; border-color: #065F46; color: #065F46; }
.faq-helpful .no:hover { background: #FEE2E2; border-color: #991B1B; color: #991B1B; }

.faq-cta-bottom {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
.faq-cta-bottom::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 115, 90, 0.3), transparent 70%);
}
.faq-cta-bottom > * { position: relative; z-index: 1; }
.faq-cta-bottom h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}
.faq-cta-bottom p {
  font-size: 15px;
  opacity: 0.88;
  margin-bottom: 20px;
  max-width: 480px;
  margin-right: auto;
  margin-left: auto;
}
.faq-cta-bottom .btn { padding: 12px 28px; }

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 56px 40px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -30%; left: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 115, 90, 0.3), transparent 70%);
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: -40%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 115, 90, 0.2), transparent 70%);
}
.about-hero .tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(232, 115, 90, 0.2);
  border: 1px solid var(--coral);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--coral-bright);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.about-hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.about-hero p {
  font-size: 18px;
  opacity: 0.92;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.about-section {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  padding: 32px;
  margin-bottom: 20px;
}
.about-section h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--coral);
}
.about-section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 14px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.stat-big {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--coral);
}
.stat-big .num {
  font-size: 36px;
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
  display: block;
}
.stat-big .label {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.team-card {
  text-align: center;
  padding: 24px 18px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
}
.team-card:hover {
  background: var(--coral-soft);
  transform: translateY(-3px);
}
.team-card img {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 12px;
  border: 3px solid var(--white);
}
.team-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-card .role {
  font-size: 12px;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 8px;
}
.team-card p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.value-card {
  padding: 22px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  border-right: 3px solid var(--coral);
}
.value-card .vicon {
  font-size: 28px;
  margin-bottom: 10px;
}
.value-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.value-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* ============================================
   SEARCH PAGE
   ============================================ */

.search-hero {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  padding: 32px;
  margin-bottom: 20px;
}
.search-hero h1 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.search-hero .search-result-info {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 14px;
}
.search-hero .search-result-info strong {
  color: var(--coral);
  font-weight: 800;
}

.big-search {
  position: relative;
  max-width: 100%;
}
.big-search input {
  width: 100%;
  padding: 14px 50px 14px 18px;
  border: 2px solid var(--coral);
  border-radius: 100px;
  font-family: inherit;
  font-size: 15px;
  direction: rtl;
}
.big-search input:focus { outline: none; box-shadow: 0 0 0 3px var(--coral-soft); }
.big-search::before {
  content: '🔍';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  pointer-events: none;
}

/* ============================================
   404 PAGE
   ============================================ */

.error-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 20px;
  text-align: center;
}
.error-404-inner {
  max-width: 600px;
}
.error-num {
  font-size: 140px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.error-404 h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.error-404 p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}
.error-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.error-actions .btn { padding: 12px 24px; font-size: 14px; }

.error-popular {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  padding: 24px;
  text-align: right;
}
.error-popular h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--coral);
}

/* Load more */
.load-more {
  text-align: center;
  margin: 24px 0;
}
.load-more button {
  background: var(--white);
  border: 2px solid var(--coral);
  color: var(--coral);
  padding: 12px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition);
}
.load-more button:hover { background: var(--coral); color: var(--white); }

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-col h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--coral);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255, 255, 255, 0.75); font-size: 14px; }
.footer-col a:hover { color: var(--white); }
.footer-brand img { height: 40px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255, 255, 255, 0.7); font-size: 14px; line-height: 1.6; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 20px;
  text-align: center;
}
.thank-you-inner {
  max-width: 640px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.thank-you-inner::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 115, 90, 0.1), transparent 70%);
}
.thank-you-inner > * { position: relative; z-index: 1; }
.thank-you-icon {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-bright) 100%);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(232, 115, 90, 0.35);
  animation: pulse-icon 2s ease-in-out infinite;
}
@keyframes pulse-icon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.thank-you-page h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
.thank-you-page .subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
}
.thank-you-next {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 28px;
  border-right: 3px solid var(--coral);
  text-align: right;
}
.thank-you-next h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.thank-you-next ul {
  list-style: none;
  padding: 0;
}
.thank-you-next li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--gray-700);
  display: flex;
  align-items: start;
  gap: 8px;
}
.thank-you-next li::before {
  content: '✓';
  color: var(--coral);
  font-weight: 900;
  flex-shrink: 0;
}
.thank-you-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.thank-you-actions .btn { padding: 12px 24px; font-size: 14px; }
.thank-you-social {
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}
.thank-you-social p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.thank-you-social .social-row {
  justify-content: center;
}
.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 980px) {
  .main-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .sidebar-widget.sticky { position: static; }
  .pulse-grid { grid-template-columns: 1fr; }
  .lead-section { grid-template-columns: 1fr; }
  .lead-list { border-right: none; padding-right: 0; border-top: 2px solid var(--coral); padding-top: 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .ticker-content { gap: 20px; }
}

@media (max-width: 640px) {
  .news-list { grid-template-columns: 1fr; }
  .section-lead-list { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .lead-main h1 { font-size: 22px; }
  .lead-main .image { height: 220px; }
}
