/* ── Page-level overrides ── */
    .tool-hero {
      background: linear-gradient(160deg, #f0fdf4 0%, #e0f2fe 100%);
      padding: 100px 0 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .tool-hero::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 480px; height: 480px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(34,197,94,.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .tool-hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: -80px;
      width: 360px; height: 360px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(59,130,246,.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .tool-hero__inner { position: relative; z-index: 1; }

    .tool-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--green-100); color: var(--primary-dark);
      border: 1px solid var(--green-200);
      border-radius: var(--radius-pill);
      padding: 6px 14px; font-size: 13px; font-weight: 600;
      margin-bottom: 20px;
    }
    .tool-badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }

    .tool-hero h1 {
      font-size: clamp(2rem, 5.5vw, 3.5rem);
      font-weight: 900;
      line-height: 1.1;
      color: var(--gray-900);
      letter-spacing: -1.5px;
      margin-bottom: 18px;
    }
    .tool-hero p.subtitle {
      font-size: clamp(15px, 2.5vw, 18px);
      color: var(--gray-600);
      max-width: 580px;
      margin: 0 auto 28px;
      line-height: 1.65;
    }

    /* Trust pills */
    .trust-row {
      display: flex; flex-wrap: wrap; justify-content: center;
      gap: 10px; margin-bottom: 40px;
    }
    .trust-pill {
      display: inline-flex; align-items: center; gap: 6px;
      background: white; border: 1px solid var(--border);
      border-radius: var(--radius-pill);
      padding: 7px 14px; font-size: 13px; font-weight: 500; color: var(--gray-700);
      box-shadow: var(--shadow-sm);
    }
    .trust-pill svg { color: var(--primary); }

    /* Upload card */
    .upload-card {
      background: white;
      border: 2px dashed var(--green-300);
      border-radius: 24px 24px 0 0;
      padding: 48px 32px;
      max-width: 620px;
      margin: 0 auto;
      cursor: pointer;
      transition: all 0.2s;
      box-shadow: 0 -4px 32px rgba(34,197,94,.10);
    }
    .upload-card:hover, .upload-card.dragover {
      border-color: var(--primary);
      background: var(--green-50);
    }
    .upload-icon-wrap {
      width: 72px; height: 72px;
      background: var(--green-100); border-radius: 20px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px; color: var(--primary);
    }
    .upload-card h2 { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
    .upload-card p { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }
    .upload-or { font-size: 13px; color: var(--gray-400); margin: 16px 0; }
    .upload-hint { font-size: 12px; color: var(--gray-400); margin-top: 16px; }
    .upload-hint strong { color: var(--primary); }

    /* Buttons layout */
    .hero-btn-row {
      display: flex; gap: 16px; justify-content: center; margin-bottom: 20px;
    }

    /* Features strip */
    .features-strip {
      background: var(--gray-900);
      padding: 32px 0;
    }
    .features-strip__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .feature-item {
      display: flex; align-items: center; gap: 12px;
      padding: 12px 24px;
      border-right: 1px solid rgba(255,255,255,.1);
    }
    .feature-item:last-child { border-right: none; }
    .feature-item__icon {
      width: 36px; height: 36px; border-radius: 10px;
      background: rgba(34,197,94,.2);
      display: flex; align-items: center; justify-content: center;
      color: var(--primary); flex-shrink: 0;
    }
    .feature-item h4 { font-size: 14px; font-weight: 600; color: white; margin-bottom: 2px; }
    .feature-item p { font-size: 12px; color: rgba(255,255,255,.55); }

    /* How it works */
    .how-section { padding: 80px 0; background: var(--gray-50); }
    .section-label {
      font-size: 12px; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: var(--primary);
      margin-bottom: 12px;
    }
    .section-title { font-size: clamp(22px, 4vw, 34px); font-weight: 800; color: var(--gray-900); margin-bottom: 16px; letter-spacing: -.5px; }
    .section-desc { font-size: 16px; color: var(--gray-500); max-width: 560px; margin: 0 auto 56px; line-height: 1.65; }

    .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .step-card {
      background: white; border: 1px solid var(--border);
      border-radius: 20px; padding: 32px 24px;
      position: relative; transition: all .2s;
    }
    .step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
    .step-num {
      width: 44px; height: 44px; border-radius: 14px;
      background: var(--green-100); color: var(--primary-dark);
      font-size: 20px; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
    }
    .step-card h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
    .step-card p { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

    /* Why choose */
    .why-section { padding: 80px 0; }
    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .why-card {
      background: white; border: 1px solid var(--border);
      border-radius: 18px; padding: 28px 24px;
      transition: all .2s;
    }
    .why-card:hover { box-shadow: var(--shadow-md); }
    .why-icon {
      width: 52px; height: 52px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
    }
    .why-icon svg { display: block; flex-shrink: 0; }
    .why-card h4 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
    .why-card p { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

    /* Problem Section */
    .problem-section { padding: 80px 0; background: white; text-align: center; }
    .problem-list { max-width: 600px; margin: 32px auto; text-align: left; }
    .problem-list li {
      font-size: 16px; color: var(--gray-700); padding: 12px 16px; margin-bottom: 12px;
      background: #fee2e2; border-radius: 8px; display: flex; align-items: center; gap: 12px;
      border-left: 4px solid #ef4444;
    }

    /* Comparison Table */
    .comparison-section { padding: 80px 0; background: var(--gray-50); }
    .comparison-table { width: 100%; max-width: 700px; margin: 0 auto; border-collapse: collapse; background: white; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); }
    .comparison-table th, .comparison-table td { padding: 20px; text-align: left; border-bottom: 1px solid var(--border); }
    .comparison-table th { background: var(--gray-100); font-weight: 700; font-size: 16px; }
    .comparison-table td:nth-child(2) { font-weight: 600; color: var(--primary); background: rgba(34, 197, 94, 0.05); }

    /* SEO prose */
    .prose-section { padding: 64px 0; background: white; }
    .prose-wrap { max-width: 760px; margin: 0 auto; }
    .prose-wrap h2 { font-size: clamp(18px, 3vw, 26px); font-weight: 800; color: var(--gray-900); margin-bottom: 16px; }
    .prose-wrap h3 { font-size: clamp(16px, 2.5vw, 20px); font-weight: 700; color: var(--gray-800); margin: 28px 0 12px; }
    .prose-wrap p { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 18px; }

    /* CTA banner */
    .cta-band {
      background: linear-gradient(135deg, #16a34a 0%, #22c55e 60%, #4ade80 100%);
      padding: 64px 24px; text-align: center;
    }
    .cta-band h2 { font-size: clamp(22px, 4vw, 36px); font-weight: 800; color: white; margin-bottom: 12px; }
    .cta-band p { font-size: 16px; color: rgba(255,255,255,.85); margin-bottom: 32px; }

    /* ── Mobile responsive ── */
    @media (max-width: 900px) {
      .features-strip__grid { grid-template-columns: repeat(2, 1fr); }
      .feature-item:nth-child(2) { border-right: none; }
      .steps-grid { grid-template-columns: 1fr 1fr; }
      .why-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .tool-hero { padding-top: 80px; }
      .upload-card { padding: 32px 20px; border-radius: 20px 20px 0 0; }
      .hero-btn-row { flex-direction: column; }
      .features-strip__grid { grid-template-columns: 1fr 1fr; gap: 0; }
      .feature-item { padding: 14px 16px; border-right: none; }
      .steps-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .features-strip__grid { grid-template-columns: 1fr; gap: 0; }
      .feature-item { border-bottom: 1px solid rgba(255,255,255,.1); }
      .feature-item:last-child { border-bottom: none; }
      .tool-hero h1 { font-size: 28px; }
      .trust-row { gap: 8px; }
      .trust-pill { font-size: 11px; padding: 5px 10px; }
    }
