/* dashboard.html page styles */

.stats-row{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:28px;}
.stat-card{border-radius:var(--r-xl);padding:22px 24px;}
.stat-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-hover);}
.stat-ico{width:42px;height:42px;border-radius:13px;background:var(--red-light);display:flex;align-items:center;justify-content:center;margin-bottom:14px;}
.stat-ico svg{width:21px;height:21px;stroke:var(--red);fill:none;stroke-width:1.8;}
.stat-val{font-size:28px;font-weight:700;letter-spacing:-0.8px;margin-bottom:3px;}
.stat-lbl{font-size:13px;color:var(--text-2);font-weight:500;}
.actions-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-bottom:28px;}
.action-card{border-radius:var(--r-xl);padding:24px;text-decoration:none;color:var(--text);display:flex;align-items:center;gap:18px;}
.action-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover);}
.action-ico{width:52px;height:52px;border-radius:16px;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.ico-red{background:linear-gradient(135deg,var(--red),#FF7B73);box-shadow:0 4px 12px var(--red-glow);}
.ico-dark{background:linear-gradient(135deg,#1c1c1e,#3a3a3c);box-shadow:0 4px 12px rgba(0,0,0,0.22);}
.action-ico svg{width:24px;height:24px;stroke:white;fill:none;stroke-width:1.8;}
.action-lbl{font-size:16px;font-weight:600;letter-spacing:-0.2px;}
.action-sub{font-size:12px;color:var(--text-2);margin-top:3px;}
.action-arr{margin-left:auto;opacity:0.28;transition:opacity 0.2s,transform 0.2s;}
.action-card:hover .action-arr{opacity:0.7;transform:translateX(4px);}
.action-arr svg{width:16px;height:16px;stroke:var(--text);fill:none;stroke-width:2.5;}
.steps-box{border-radius:var(--r-xl);padding:28px;margin-bottom:28px;}
.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:20px;}
.step-num{width:26px;height:26px;border-radius:50%;background:var(--red);color:#fff;font-size:13px;font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.step-ico{width:42px;height:42px;border-radius:13px;background:var(--red-light);display:flex;align-items:center;justify-content:center;}
.step-ico svg{width:21px;height:21px;stroke:var(--red);fill:none;stroke-width:1.8;}
.step h4{font-size:15px;font-weight:600;margin-top:10px;margin-bottom:5px;}
.step p{font-size:13px;color:var(--text-2);line-height:1.5;}
.cta-banner{border-radius:var(--r-xl);padding:32px 36px;background:linear-gradient(135deg,var(--red),#FF7B73);display:flex;align-items:center;justify-content:space-between;gap:24px;overflow:hidden;position:relative;box-shadow:0 8px 30px var(--red-glow);}
.cta-banner::before{content:'';position:absolute;top:-60px;right:-40px;width:200px;height:200px;border-radius:50%;background:rgba(255,255,255,0.12);}
.cta-text{position:relative;z-index:1;}
.cta-text h3{font-size:22px;font-weight:800;color:#fff;letter-spacing:-0.4px;margin-bottom:6px;}
.cta-text p{font-size:14px;color:rgba(255,255,255,0.78);}
.cta-btn{position:relative;z-index:1;background:#fff;color:var(--red);font-size:15px;font-weight:700;padding:12px 24px;border-radius:14px;text-decoration:none;white-space:nowrap;flex-shrink:0;transition:all 0.2s;box-shadow:0 2px 12px rgba(0,0,0,0.14);}
.cta-btn:hover{transform:scale(1.04) translateY(-1px);}
@media(max-width:768px){.stats-row{grid-template-columns:1fr 1fr;}.stats-row .stat-card:last-child{grid-column:1/-1;}.actions-grid{grid-template-columns:1fr;}.steps-grid{grid-template-columns:1fr;}.cta-banner{flex-direction:column;text-align:center;}}
