body { margin: 0; font-family: 'Inter', sans-serif; line-height: 1.6; background:#f8fafc; color:#0f172a; }

  .lg-hero { background:linear-gradient(135deg,#7c3aed,#0ea5e9); color:#fff; padding:90px 20px; text-align:center; }
  .lg-hero h1 { font-size:3rem; margin-bottom:14px; }
  .lg-hero p { max-width:760px; margin:0 auto 26px; font-size:1.2rem; }

  .lg-form-box {
    background:#fff; color:#0f172a; padding:24px; border-radius:14px; max-width:460px; margin:20px auto;
    box-shadow:0 8px 22px rgba(15,23,42,0.15);
  }
  .lg-form-box h3 { margin-bottom:14px; }
  .lg-form-box input, .lg-form-box textarea {
    width:100%; padding:12px; margin-bottom:12px; border:1px solid #cbd5e1; border-radius:8px;
  }
  .lg-form-box button {
    width:100%; padding:14px; background:#7c3aed; color:#fff; border:none; border-radius:8px; font-weight:600;
    transition:background .25s ease;
  }
  .lg-form-box button:hover { background:#5b21b6; }

  .lg-section { padding:70px 20px; max-width:1200px; margin:auto; }
  .lg-section h2 { text-align:center; margin-bottom:36px; color:#0f172a; }

  .lg-grid { display:grid; gap:28px; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); }
  .lg-card {
    background:#fff; border-radius:14px; padding:24px; text-align:center;
    box-shadow:0 6px 20px rgba(15,23,42,0.08); transition:transform .25s ease;
  }
  .lg-card:hover { transform:translateY(-8px); }
  .lg-card img { width:170px; margin-bottom:14px; }
  .lg-card h3 { margin-bottom:8px; color:#1e3a8a; }
  .lg-card p { color:#475569; }

  .lg-steps { display:grid; gap:20px; max-width:900px; margin:auto; }
  .lg-step { background:#fff; padding:20px; border-left:5px solid #0ea5e9; border-radius:10px; }

  .lg-industries { display:grid; gap:18px; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); text-align:center; }
  .lg-industries div { background:#fff; padding:16px; border-radius:10px; box-shadow:0 4px 14px rgba(15,23,42,0.05); font-weight:500; }

  .lg-testimonials { display:grid; gap:24px; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); }
  .lg-testimonial { background:#fff; padding:22px; border-radius:12px; box-shadow:0 6px 16px rgba(15,23,42,0.05); font-style:italic; }
  .lg-testimonial h4 { margin-top:12px; color:#0f172a; }

  .lg-cta { background:linear-gradient(90deg,#0ea5e9,#7c3aed); color:#fff; padding:70px 20px; text-align:center; border-radius:14px; }
  .lg-cta a { background:#fff; color:#0f172a; padding:14px 30px; border-radius:8px; font-weight:700; text-decoration:none; }

  @media(max-width:600px){
    .lg-hero h1{ font-size:2rem; }
    .lg-hero{ padding:60px 16px; }
  }