/* Home page styles extracted from index.html */

/* Hero Section */
.hero {
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 150%;
  background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.15), transparent 70%);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
  font-size: 3.5rem;
  margin: 12px 0 20px;
  background: linear-gradient(135deg, #111827 0%, #4f46e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero { padding: 40px 0 24px; }
  .hero p.lead { font-size: 1.05rem; margin-bottom: 24px; }
}
.hero p.lead {
  color: var(--muted);
  margin: 8px auto 32px;
  max-width: 700px;
  font-size: 1.25rem;
  line-height: 1.6;
}
.cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.btn {
  appearance: none;
  border: 2px solid #111827;
  background: #111827;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.15);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.25);
}
.btn.secondary {
  background: #fff;
  color: #111827;
  border-color: #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.btn.secondary:hover {
  background: #f9fafb;
  border-color: #4f46e5;
  color: #4f46e5;
}
.trust {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.trust .chip {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: .95rem;
  color: #374151;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Sections */
.section { margin: 80px 0; }
.section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: #111827;
}
@media (max-width: 480px) {
  .section h2 { font-size: 1.6rem; }
}
.section p.sub {
  text-align: center;
  color: var(--muted);
  margin: 0 auto 40px;
  max-width: 650px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  transition: all 0.3s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.card.icon {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 24px;
}
.card .icon-wrapper {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 8px;
  box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
}
.card .k {
  font-size: 1.2rem;
  font-weight: 600;
}
.card .d {
  color: var(--muted);
  line-height: 1.6;
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.tool {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.tool::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
  transition: left 0.5s ease;
}
.tool:hover::before {
  left: 100%;
}
.tool:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.tool .t {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.tool .name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #111827;
}
.tool .tag {
  font-size: .75rem;
  color: #4f46e5;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.tool .d {
  color: var(--muted);
  line-height: 1.5;
}
.tool .icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

/* Features Section */
.features-highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 24px;
  padding: 60px 40px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 80px 0;
}
.features-highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}
.features-highlight h2 {
  color: white;
  margin-bottom: 16px;
  font-size: 2.5rem;
}
.features-highlight p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 32px;
}
@media (max-width: 480px) {
  .features-highlight { padding: 32px 20px; margin: 48px 0; }
  .features-highlight h2 { font-size: 1.8rem; }
  .features-highlight p { font-size: 1.05rem; margin-bottom: 20px; }
  .btn { padding: 12px 20px; font-size: .95rem; }
}
.features-highlight .cta {
  margin: 0;
}
.features-highlight .btn {
  background: white;
  color: #667eea;
  border-color: white;
}
.features-highlight .btn:hover {
  background: rgba(255, 255, 255, 0.95);
}

/* FAQ */
.faq { max-width: 800px; margin: 0 auto; }
.faq p {
  margin-bottom: 20px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  line-height: 1.6;
}
.faq strong {
  color: #4f46e5;
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

/* Footer */
footer {
  text-align: center;
  color: #6b7280;
  font-size: .9rem;
  margin: 60px 0 20px;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
}
