/* Variables */
:root{
  --primary:#6a11cb;
  --secondary:#2575fc;
  --accent:#ff4e50;
  --light:#f8f9fa;
  --dark:#212529;
}

.th-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px 80px;
  color:var(--dark);
}

/* Page Header */
.th-page-header{
  padding:60px 0 40px;
  text-align:center;
}
.th-page-header h1{
  font-size:3rem;
  margin-bottom:18px;
  background:linear-gradient(to right,var(--primary),var(--secondary));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.th-page-header p{
  font-size:1.1rem;
  max-width:720px;
  margin:0 auto;
  color:#555;
}

/* Grid */
.th-tools-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:30px;
}

/* Card */
.th-tool-card{
  background:#fff;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 10px 20px rgba(0,0,0,.1);
  transition:transform .3s ease, box-shadow .3s ease;
  position:relative;
}
.th-tool-card:hover{
  transform:translateY(-10px);
  box-shadow:0 18px 35px rgba(0,0,0,.18);
}

/* Header */
.th-tool-header{
  padding:25px 20px 22px;
  text-align:center;
  background:linear-gradient(to right,var(--primary),var(--secondary));
  color:#fff;
}
.th-tool-icon{
  font-size:40px;
  margin-bottom:12px;
}
.th-tool-header h3{
  font-size:1.4rem;
  margin:0 0 8px;
  font-weight:700;
}
.th-tool-category{
  display:inline-block;
  background:rgba(255,255,255,.18);
  padding:6px 14px;
  border-radius:50px;
  font-size:.85rem;
}

/* Body */
.th-tool-body{
  padding:20px;
}
.th-tool-features{
  list-style:none;
  margin:0 0 16px 0;
  padding:0;
}
.th-tool-features li{
  padding:8px 0;
  border-bottom:1px solid #eee;
  display:flex;
  align-items:center;
  gap:10px;
  color:#333;
}
.th-tool-features li i{
  color:var(--secondary);
  min-width:18px;
  text-align:center;
}

/* Price */
.th-price{
  font-weight:700;
  font-size:1.15rem;
  color:var(--primary);
  margin-bottom:14px;
}

/* Button */
.th-btn-primary{
  display:inline-block;
  padding:12px 24px;
  border:none;
  border-radius:50px;
  background:linear-gradient(145deg,var(--primary),var(--secondary));
  color:#fff !important;
  font-weight:700;
  text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease;
  box-shadow:0 6px 16px rgba(0,0,0,.18);
}
.th-btn-primary:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 26px rgba(0,0,0,.28);
}
.th-btn-primary:active{
  transform:translateY(2px);
  box-shadow:0 4px 12px rgba(0,0,0,.18);
}

/* Responsive */
@media (max-width:768px){
  .th-tools-grid{ grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); }
  .th-page-header h1{ font-size:2.2rem; }
}
