

    /* ── HERO ── */

    .hero-trust-stars { color: #f59e0b; letter-spacing: 2px; }

    /* ── STATS BAR ── */
    .stats-bar {
      background: var(--surface);
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      padding: 20px;
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1px; background: var(--border);
    }
    .stat-item {
      background: var(--surface);
      padding: 20px 28px;
      text-align: center;
    }
    .stat-num {
      
      font-size: 1.9rem; font-weight: 700;
      color: var(--blue); display: block;
    }
    .stat-label { font-size: 0.82rem; color: var(--text3); margin-top: 3px; }

    /* ── SECTION COMMONS ── */


    /* ── PROBLEMS ── */
    .problems { background: var(--bg2); }
    .problems-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }
    .problem-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px;
      position: relative; overflow: hidden;
      transition: border-color .2s, transform .2s;
    }
    .problem-card:hover { border-color: var(--border2); transform: translateY(-3px); }
   
    .problem-icon {
      width: 44px; height: 44px;
      background: rgba(248,113,113,0.1); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; margin-bottom: 16px;
    }
    .problem-card h3 {
      font-family: var(--font-head); font-weight: 700;
      font-size: 1.05rem; margin-bottom: 10px;
    }
    .problem-card p { font-size: 0.9rem; color: var(--text2); line-height: 1.6; }
    .problem-loss {
    display: inline-block;
    margin-top: 14px;
    background: rgb(4 86 178 / 17%);
    color: #0453a7;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

    /* ── FEATURES ── */
    .features-list { display: flex; flex-direction: column; gap: 72px; }
    .feature-row {
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
      align-items: center;
    }
    .feature-row.reverse { direction: rtl; }
    .feature-row.reverse > * { direction: ltr; }
    .feature-text h3 { max-width: 100%;}
    .feature-text p { font-size: 0.97rem; color: var(--text2); line-height: 1.75; margin-bottom: 24px; }
    .check-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .check-list li {font-size: 0.92rem; color: var(--text2);display: flex; align-items: flex-start; gap: 10px;}
    .check-list li::before {content: '✓';color: var(--accent); font-weight: 700;flex-shrink: 0; margin-top: 1px;}
    .feature-visual {background: var(--surface);border: 1px solid var(--border);border-radius: 20px;padding: 28px;position: relative; overflow: hidden;}
    .feature-visual::after {content: '';position: absolute; inset: 0;background: radial-gradient(ellipse at 80% 20%, var(--accent-dim), transparent 60%);pointer-events: none;}

    /* Estimate card mockup */
    .estimate-card { font-size: 0.82rem; }
    .estimate-header {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 18px;
    }
    .estimate-title { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; }
    .estimate-badge {
      background: var(--accent-dim); color: var(--accent);
      border: 1px solid rgba(61,220,132,0.2);
      border-radius: 100px; padding: 3px 10px; font-size: 0.72rem; font-weight: 600;
    }
    .estimate-row {display: flex; justify-content: space-between; align-items: center;padding: 8px 0; border-bottom: 1px solid var(--border);color: var(--text2);}
    .estimate-row span{font-size:12px;}
	.estimate-row:last-child { border-bottom: none; }
    .estimate-row.total {color: var(--text); font-weight: 700; font-size: 1rem;padding-top: 12px; margin-top: 4px;}
    .estimate-row.overhead { color: var(--orange); }
    .estimate-row.profit { color: var(--accent); }
    .estimate-row .label { display: flex; align-items: center; gap: 6px; }
    .auto-tag {background: rgba(61,220,132,0.1); color: var(--accent);border-radius: 4px; padding: 1px 6px; font-size: 0.68rem; font-weight: 600;}
    .margin-bar {margin-top: 18px; background: var(--border);border-radius: 100px; height: 8px; overflow: hidden;}
    .margin-fill {height: 100%; width: 22%; background: var(--accent);border-radius: 100px; transition: width 1s ease;}
    .margin-label {display: flex; justify-content: space-between;margin-top: 8px; font-size: 0.75rem; color: var(--text3);}
    .margin-label span:last-child { color: var(--accent); font-weight: 600; }

    /* Timer mockup */
    .time-steps { display: flex; flex-direction: column; gap: 12px; }
    .time-step {display: flex; align-items: center; gap: 14px;background: var(--surface); border: 1px solid var(--border);border-radius: 10px; padding: 12px 16px;}
    .step-num {width: 28px; height: 28px; border-radius: 50%;background: var(--blue-soft);color: var(--blue); font-size: 0.75rem; font-weight: 700;display: flex; align-items: center; justify-content: center;flex-shrink: 0;}
    .step-content { flex: 1; }
    .step-title { font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; }
    .step-time { font-size: 0.75rem; background: #f59e0b17;color: #f59e0b; }
    .step-done { color: var(--green); font-size: 0.85rem; }

    /* Proposal preview */
    .proposal-preview {background: white; border-radius: 10px;padding: 20px; color: #1a1a1a;}
    .proposal-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
    .prop-company { font-size: 0.75rem; font-weight: 700; color: #111; text-transform: uppercase; letter-spacing: .05em; }
    .prop-invoice { font-size: 0.7rem; color: #888; }
    .prop-title { font-weight: 700; font-size: 0.95rem; color: #111; margin-bottom: 10px; }
    .prop-line { display: flex; justify-content: space-between; font-size: 0.78rem; padding: 5px 0; border-bottom: 1px solid #eee; color: #555; }
    .prop-line.total { font-weight: 700; font-size: 0.88rem; color: #111; border: none; margin-top: 6px; }
    .prop-status {margin-top: 14px; text-align: center;background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 8px; padding: 10px;font-size: 0.78rem; font-weight: 600; color: #15803d;}

    /* ── USE CASES ── */
    .use-cases { background: var(--bg-section); }
    .use-cases-grid {display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));gap: 20px;}
    .use-card {background: #fff;border: 1px solid var(--border); border-radius: 20px;padding: 30px;transition: border-color .2s, transform .2s;}
    .use-card:hover { border-color: var(--accent2); transform: translateY(-4px); }
    .use-icon {width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center; margin-bottom: 15px;
    justify-content: center;}
    .use-card h3 {font-family: var(--font-head); font-weight: 700;font-size: 1.05rem; margin-bottom: 10px;}
    .use-card p { font-size: 0.88rem; color: var(--text2); line-height: 1.65; }

    /* ── HOW IT WORKS ── */
    .how-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));gap: 0; position: relative;}
    .how-step {padding: 36px 28px;border-right: 1px solid var(--border);position: relative;grid-template-columns: auto;}
    .how-step:last-child { border-right: none; }
    .how-num {font-family: var(--font-head); font-size: 2.8rem; font-weight: 700;color: var(--border2); line-height: 1; margin-bottom: 16px;transition: color .3s;}
    .how-step:hover .how-num { color: var(--accent); }
    .how-step h3 {font-family: var(--font-head); font-weight: 700;font-size: 1rem; margin-bottom: 10px;}
    .how-step p { font-size: 0.875rem; color: var(--text2); line-height: 1.6; }
    .hero-main-mockup{display: flex; align-items: center; justify-content:space-between ;}
 /* Blue */
.icon-blue{
    background:#e8f1ff;
    color:#2563eb;
}

/* Green */
.icon-green{
    background:#eafaf1;
    color:#16a34a;
}

/* Orange */
.icon-orange{
    background:#fff4e8;
    color:#ea580c;
}

/* Purple */
.icon-purple{
    background:#f3e8ff;
    color:#9333ea;
}

/* Red */
.icon-red{
    background:#feecec;
    color:#dc2626;
}

/* Cyan */
.icon-cyan{
    background:#e6fbff;
    color:#0891b2;
}

/* Yellow */
.icon-yellow{
    background:#fff9e6;
    color:#ca8a04;
}

/* Pink */
.icon-pink{
    background:#fdebf5;
    color:#db2777;
}

/* Indigo */
.icon-indigo{
    background:#eef2ff;
    color:#4f46e5;
}
    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .feature-row, .feature-row.reverse { grid-template-columns: 1fr; direction: ltr; }
      .stats-bar { grid-template-columns: repeat(2,1fr); padding:0px; }
      .how-steps { grid-template-columns: 1fr; }
      .how-step { border-right: none; border-bottom: 1px solid var(--border); }
      .how-step:last-child { border-bottom: none; }
      nav .nav-links { display: none; }
      .hero { padding: 60px 5% 56px; }
      .hcard-body {
    padding: 14px 8px;
}
.features-list {  gap: 40px;  }
    .feature-row{  gap: 40px;  }
    }

    /* Animations */
    @keyframes fadeUp {
      from { opacity:0; transform:translateY(24px); }
      to   { opacity:1; transform:translateY(0); }
    }
    .fade-up { animation: fadeUp .6s ease both; }
    .fade-up.d1 { animation-delay: .1s; }
    .fade-up.d2 { animation-delay: .2s; }
    .fade-up.d3 { animation-delay: .3s; }
    .fade-up.d4 { animation-delay: .4s; }