.elementor-1560 .elementor-element.elementor-element-8d7db22{--display:flex;}/* Start custom CSS for html, class: .elementor-element-490adb2 *//* ============================================
   CIRA BLOG — STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Source+Serif+4:ital,wght@0,400;0,600;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --bg:          #f0f4ff;
  --surface:     #ffffff;
  --card:        #e8eeff;
  --border:      #c5d0f5;
  --accent:      #2a3fd6;
  --accent2:     #4f63e7;
  --accent-glow: rgba(42, 63, 214, 0.12);
  --text:        #111827;
  --muted:       #6b7280;
  --light-text:  #374151;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Serif 4', Georgia, serif;
  --max-width:    780px;
  --radius:       14px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.85;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================================
   HERO
   ============================================ */

.hero {
  background: linear-gradient(135deg, #0f1f8a 0%, #1a34c9 45%, #2a47e8 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  font-family: sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 900;
  line-height: 1.15;
  max-width: 740px;
  margin: 0 auto 1.4rem;
  color: #ffffff;
}

.hero h1 span {
  color: #93c5fd;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  font-family: sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

.hero-meta .dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
}

/* ============================================
   ARTICLE WRAPPER
   ============================================ */

.article-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text);
  margin: 3rem 0 1rem;
  line-height: 1.25;
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent2);
  margin: 2rem 0 0.65rem;
}

.article-body p {
  margin-bottom: 1.5rem;
  color: var(--light-text);
}

.article-body strong {
  color: var(--text);
  font-weight: 600;
}

/* ============================================
   PULL QUOTE
   ============================================ */

.pull-quote {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  box-shadow: 0 2px 16px rgba(42,63,214,0.08);
}

.pull-quote cite {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  font-family: sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* ============================================
   STAT CARDS
   ============================================ */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 1rem;
  margin: 2.5rem 0;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(42,63,214,0.07);
}

.stat-card .number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card .label {
  font-family: sans-serif;
  font-size: 0.77rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   FEATURE LIST
   ============================================ */

.feature-list {
  list-style: none;
  margin: 1.25rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1rem;
  color: var(--light-text);
}

.feature-list li .icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--accent-glow);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  margin-top: 0.2rem;
}

/* ============================================
   HIGHLIGHT BOX
   ============================================ */

.highlight-box {
  background: linear-gradient(135deg, rgba(42,63,214,0.07), rgba(79,99,231,0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
}

.highlight-box .box-title {
  font-family: sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.highlight-box p {
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--text);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.93rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(42,63,214,0.08);
}

.comparison-table thead {
  background: var(--accent);
  color: #fff;
}

.comparison-table th {
  padding: 0.9rem 1.2rem;
  text-align: left;
  font-family: sans-serif;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.comparison-table tbody tr {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.comparison-table tbody tr:hover { background: var(--card); }

.comparison-table td {
  padding: 0.85rem 1.2rem;
  color: var(--light-text);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

.comparison-table .yes { color: #16a34a; font-weight: 700; }
.comparison-table .no  { color: #dc2626; font-weight: 700; }

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, #0f1f8a, #1a34c9, #2a47e8);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  margin: 3.5rem 0 0;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.75rem;
  border: none;
  padding: 0;
}

.cta-banner p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--accent);
  font-family: sans-serif;
  font-size: 0.93rem;
  font-weight: 800;
  padding: 0.9rem 2.5rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  text-decoration: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 640px) {
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .hero h1 { font-size: 2rem; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .article-body h2 { font-size: 1.5rem; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .cta-banner h2 { font-size: 1.6rem; }
  .comparison-table { font-size: 0.8rem; }
  .comparison-table th,
  .comparison-table td { padding: 0.65rem 0.75rem; }
}/* End custom CSS */