/* ============================================================
   CATALUNYAAR — "The Simple Man" Series | Post #2
   /authority mode — Month 2–6 Paperwork Marathon
   WP CODER: Paste into the CSS tab
   ============================================================ */

.cyr-p2-post * { box-sizing: border-box; margin: 0; padding: 0; }

.cyr-p2-post {
  font-family: 'Space Grotesk', sans-serif;
  color: #1a1a2e;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 0 60px;
  line-height: 1.7;
}

/* ── SERIES NAV ── */
.cyr-series-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f8;
  flex-wrap: wrap;
  gap: 10px;
}
.cyr-series-prev {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}
.cyr-series-prev:hover { color: #f97316; }
.cyr-series-prev .ti { font-size: 15px; }
.cyr-series-current {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D4AF37;
}

/* ── HERO ── */
.cyr-p2-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  background: #10143C;
  border-radius: 20px;
  padding: 52px 48px;
  margin-bottom: 36px;
  overflow: hidden;
  position: relative;
}
.cyr-p2-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,175,55,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.cyr-p2-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #f97316;
  margin-bottom: 14px;
}
.cyr-p2-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(38px, 6vw, 60px);
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.cyr-p2-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.65;
}

/* ── LANG TOGGLE ── */
.cyr-lang-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
  border: 1px solid rgba(255,255,255,0.15);
}
.cyr-lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}
.cyr-lang-btn:hover { color: #fff; background: rgba(255,255,255,0.1); }
.cyr-lang-btn.active { background: #D4AF37; color: #10143C; font-weight: 700; }

/* ── MINI TIMELINE ── */
.cyr-timeline-mini {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 140px;
}
.cyr-tm-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  position: relative;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.cyr-tm-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 9px; top: 32px;
  width: 2px; height: calc(100% - 12px);
  background: rgba(255,255,255,0.15);
}
.cyr-tm-item.active { opacity: 1; }
.cyr-tm-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
  z-index: 1;
}
.cyr-tm-item.active .cyr-tm-dot {
  background: #D4AF37;
  border-color: #D4AF37;
}
.cyr-tm-label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.cyr-tm-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 1px;
}

/* ── HONEST INTRO ── */
.cyr-p2-intro {
  display: flex;
  gap: 20px;
  background: #f8f9ff;
  border-left: 4px solid #10143C;
  border-radius: 0 14px 14px 0;
  padding: 28px 32px;
  margin-bottom: 36px;
}
.cyr-p2-intro-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.cyr-p2-intro-text {
  font-size: 16px;
  color: #374151;
  margin-bottom: 12px;
  line-height: 1.72;
}
.cyr-p2-intro-text:last-child { margin-bottom: 0; }
.cyr-intro-bold { font-weight: 700; color: #10143C; font-size: 17px; }

/* ── QUICK REF CARDS ── */
.cyr-ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 52px;
}
.cyr-ref-card {
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cyr-ref-card .ti { font-size: 22px; }
.cyr-ref-title { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.cyr-ref-body { font-size: 13px; line-height: 1.55; }
.cyr-ref-urgent { background: #fff1f0; border: 1.5px solid #fecaca; }
.cyr-ref-urgent .ti, .cyr-ref-urgent .cyr-ref-title { color: #dc2626; }
.cyr-ref-urgent .cyr-ref-body { color: #7f1d1d; }
.cyr-ref-cost { background: #f0fdf4; border: 1.5px solid #bbf7d0; }
.cyr-ref-cost .ti, .cyr-ref-cost .cyr-ref-title { color: #16a34a; }
.cyr-ref-cost .cyr-ref-body { color: #14532d; }
.cyr-ref-time { background: #eff6ff; border: 1.5px solid #bfdbfe; }
.cyr-ref-time .ti, .cyr-ref-time .cyr-ref-title { color: #1d4ed8; }
.cyr-ref-time .cyr-ref-body { color: #1e3a8a; }
.cyr-ref-risk { background: #fff8f0; border: 1.5px solid #fed7aa; }
.cyr-ref-risk .ti, .cyr-ref-risk .cyr-ref-title { color: #ea580c; }
.cyr-ref-risk .cyr-ref-body { color: #7c2d12; }

/* ── SECTIONS ── */
.cyr-p2-section {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1.5px solid #f0f0f8;
}
.cyr-p2-section:last-of-type { border-bottom: none; }
.cyr-p2-sec-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}
.cyr-p2-sec-num {
  font-family: 'Anton', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: #e8eaf0;
  min-width: 64px;
  letter-spacing: 0.02em;
}
.cyr-p2-sec-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #10143C;
  margin-bottom: 6px;
  line-height: 1.3;
}
.cyr-p2-sec-when {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #f97316;
  background: #fff8f0;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 4px 12px;
}
.cyr-p2-sec-when .ti { font-size: 14px; }

/* ── BODY TEXT ── */
.cyr-p2-body p {
  font-size: 16px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 18px;
}
.cyr-p2-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #10143C;
  margin: 28px 0 14px;
}

/* ── DOC LIST ── */
.cyr-doc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.cyr-doc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #374151;
  padding: 10px 14px;
  background: #f8f9ff;
  border-radius: 8px;
  border: 1px solid #e8eaf0;
}
.cyr-doc-item .ti { color: #10b981; font-size: 17px; margin-top: 2px; flex-shrink: 0; }

/* ── CALLOUTS ── */
.cyr-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-radius: 12px;
  padding: 20px 22px;
  margin: 20px 0;
}
.cyr-callout .ti { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.cyr-callout strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.cyr-callout p { font-size: 14px; line-height: 1.65; margin: 0; }
.cyr-callout-info { background: #eff6ff; border: 1.5px solid #bfdbfe; }
.cyr-callout-info .ti, .cyr-callout-info strong { color: #1d4ed8; }
.cyr-callout-info p { color: #1e3a8a; }
.cyr-callout-warning { background: #fff8f0; border: 1.5px solid #fed7aa; }
.cyr-callout-warning .ti, .cyr-callout-warning strong { color: #ea580c; }
.cyr-callout-warning p { color: #7c2d12; }

/* ── TWO COL ── */
.cyr-two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.cyr-col-card {
  background: #ffffff;
  border: 1.5px solid #e8eaf0;
  border-radius: 14px;
  padding: 22px;
}
.cyr-col-head {
  font-size: 15px;
  font-weight: 700;
  color: #10143C;
  margin-bottom: 10px;
}
.cyr-col-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
}

/* ── TAX CARDS ── */
.cyr-tax-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.cyr-tax-card {
  background: #ffffff;
  border: 1.5px solid #e8eaf0;
  border-radius: 14px;
  padding: 24px;
  border-top: 4px solid #10143C;
}
.cyr-tax-icon { font-size: 26px; margin-bottom: 10px; }
.cyr-tax-title {
  font-size: 15px;
  font-weight: 700;
  color: #10143C;
  margin-bottom: 10px;
}
.cyr-tax-body {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
}

/* ── AUTHORITY CHECKLIST ── */
.cyr-checklist-authority {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cyr-auth-check {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: #fff;
  border: 1.5px solid #e8eaf0;
  border-radius: 14px;
}
.cyr-auth-check-icon {
  width: 32px; height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: #10143C;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cyr-auth-check-icon .ti { color: #D4AF37; font-size: 16px; }
.cyr-auth-check strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #10143C;
  margin-bottom: 6px;
}
.cyr-auth-check p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
}

/* ── GESTOR BOX ── */
.cyr-gestor-box {
  background: linear-gradient(135deg, #10143C 0%, #1e2060 100%);
  border-radius: 20px;
  padding: 4px;
  margin-bottom: 52px;
}
.cyr-gestor-inner {
  background: #10143C;
  border-radius: 17px;
  padding: 40px 44px;
  border: 1px solid rgba(212,175,55,0.3);
}
.cyr-gestor-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 10px;
}
.cyr-gestor-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.35;
}
.cyr-gestor-inner p {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 14px;
}
.cyr-gestor-tip {
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin: 18px 0;
}
.cyr-gestor-cta {
  display: inline-block;
  color: #D4AF37;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 2px solid rgba(212,175,55,0.4);
  transition: border-color 0.2s;
}
.cyr-gestor-cta:hover { border-color: #D4AF37; color: #D4AF37; }

/* ── MISTAKES ── */
.cyr-mistakes {
  margin-bottom: 52px;
}
.cyr-mistakes-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #10143C;
  margin-bottom: 24px;
}
.cyr-mistake-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid #e8eaf0;
  border-radius: 16px;
  overflow: hidden;
}
.cyr-mistake-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
  background: #fff;
  border-bottom: 1px solid #f0f0f8;
}
.cyr-mistake-item:last-child { border-bottom: none; }
.cyr-mistake-item:hover { background: #fafafa; }
.cyr-mistake-num {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  color: #f97316;
  min-width: 40px;
  line-height: 1.2;
}
.cyr-mistake-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #10143C;
  margin-bottom: 5px;
}
.cyr-mistake-item p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
}

/* ── NEXT POST ── */
.cyr-next-post {
  background: #f8f9ff;
  border: 1.5px solid #e8eaf0;
  border-radius: 16px;
  padding: 32px 36px;
  margin-bottom: 36px;
  border-left: 5px solid #D4AF37;
}
.cyr-next-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 8px;
}
.cyr-next-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #10143C;
  margin-bottom: 8px;
  line-height: 1.4;
}
.cyr-next-post p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 16px;
  line-height: 1.6;
}
.cyr-next-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #f97316;
  text-decoration: none;
  border-bottom: 2px solid #fed7aa;
  transition: border-color 0.2s;
}
.cyr-next-cta:hover { border-color: #f97316; }

/* ── CTA BLOCK ── */
.cyr-cta-block {
  background: #fff8f0;
  border: 2px solid #fed7aa;
  border-radius: 20px;
  padding: 44px;
  text-align: center;
  margin-bottom: 44px;
}
.cyr-cta-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f97316;
  margin-bottom: 10px;
}
.cyr-cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.35;
}
.cyr-cta-body {
  font-size: 15px;
  color: #4b5563;
  max-width: 460px;
  margin: 0 auto 24px;
  line-height: 1.65;
}
.cyr-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cyr-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.cyr-btn-primary:hover { background: #1db954; transform: translateY(-1px); color: #fff; }
.cyr-btn-secondary {
  display: inline-flex;
  background: #fff;
  color: #1a1a2e;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid #e8eaf0;
  transition: border-color 0.2s, transform 0.15s;
}
.cyr-btn-secondary:hover { border-color: #1a1a2e; transform: translateY(-1px); color: #1a1a2e; }

/* ── SOCIAL FOOTER ── */
.cyr-social-footer {
  text-align: center;
  padding: 36px 0 0;
  border-top: 1.5px solid #f0f0f8;
}
.cyr-social-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 18px;
}
.cyr-social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.cyr-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.15s, opacity 0.15s;
}
.cyr-social-icon:hover { transform: translateY(-2px); opacity: 0.9; }
.cyr-social-wa { background: #25D366; }
.cyr-social-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.cyr-social-yt { background: #FF0000; }
.cyr-social-fb { background: #1877F2; }
.cyr-social-tt { background: #000; }
.cyr-brand-tagline { font-size: 13px; color: #9ca3af; font-style: italic; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .cyr-p2-hero { grid-template-columns: 1fr; padding: 36px 24px 32px; }
  .cyr-timeline-mini { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .cyr-tm-item::after { display: none; }
  .cyr-p2-title { font-size: 36px; }
  .cyr-p2-sec-num { font-size: 38px; min-width: 48px; }
  .cyr-p2-sec-title { font-size: 19px; }
  .cyr-gestor-inner { padding: 28px 24px; }
  .cyr-cta-block { padding: 28px 20px; }
  .cyr-p2-intro { flex-direction: column; gap: 12px; padding: 20px; }
}