/* Tools Landing Page Styles */

/* Hero Section */
.tools-hero {
  background: linear-gradient(135deg, #f8f4ec 0%, #ede6d8 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 2px solid #d4a574;
}

.tools-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.tools-hero-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.tools-hero-subtitle {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Upgrade Banner */
.tools-upgrade-banner {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(192, 149, 96, 0.1) 100%);
  border: 2px solid #d4a574;
  border-radius: 12px;
  padding: 20px;
  margin: 30px auto 0;
  max-width: 600px;
}

.tools-upgrade-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.tools-upgrade-icon {
  font-size: 24px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.tools-upgrade-text {
  font-size: 16px;
  color: #333;
}

.tools-upgrade-text strong {
  color: #d4a574;
  font-weight: 600;
}

.tools-upgrade-link,
.tools-signup-link {
  color: #d4a574;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.tools-upgrade-link:hover,
.tools-signup-link:hover {
  border-bottom-color: #d4a574;
}

/* Tools Grid */
.tools-grid-container {
  padding: 60px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Tool Card */
.tool-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.tool-card-coming-soon {
  opacity: 0.7;
  background: #f9f9f9;
}

.tool-coming-soon-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tool-card-header {
  margin-bottom: 20px;
}

.tool-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 15px;
}

.tool-name {
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 0;
  font-weight: 600;
}

.tool-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.tool-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.tool-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #555;
  font-size: 14px;
  line-height: 1.4;
}

.tool-feature-icon {
  color: #4caf50;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.tool-card-footer {
  margin-top: auto;
}

.tool-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #d4a574 0%, #c09560 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.tool-cta-button:hover:not(:disabled) {
  background: linear-gradient(135deg, #c09560 0%, #b08550 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.tool-cta-arrow {
  transition: transform 0.3s ease;
}

.tool-cta-button:hover .tool-cta-arrow {
  transform: translateX(3px);
}

.tool-cta-disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Benefits Section */
.tools-benefits {
  background: #f8f8f8;
  padding: 60px 20px;
}

.tools-benefits-title {
  text-align: center;
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 50px;
  font-weight: 600;
}

.tools-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.tools-benefit {
  text-align: center;
}

.tools-benefit-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.tools-benefit h3 {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.tools-benefit p {
  color: #666;
  line-height: 1.6;
}

/* Upgrade Section */
.tools-upgrade-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
}

.tools-upgrade-card {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.tools-upgrade-title {
  text-align: center;
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}

.tools-upgrade-description {
  text-align: center;
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tools-plans-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.tools-plan {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  position: relative;
}

.tools-plan-featured {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(192, 149, 96, 0.1) 100%);
  border: 2px solid #d4a574;
}

.tools-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4a574 0%, #c09560 100%);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.tools-plan h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.tools-plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tools-plan li {
  padding: 10px 0;
  color: #555;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tools-plan li:last-child {
  border-bottom: none;
}

.tools-plan li:before {
  content: "✓ ";
  color: #4caf50;
  font-weight: bold;
  margin-right: 8px;
}

.tools-upgrade-actions {
  text-align: center;
}

.tools-upgrade-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #d4a574 0%, #c09560 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
}

.tools-upgrade-button:hover {
  background: linear-gradient(135deg, #c09560 0%, #b08550 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .tools-hero-title {
    font-size: 2rem;
  }
  
  .tools-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tools-benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .tools-plans-comparison {
    grid-template-columns: 1fr;
  }
  
  .tools-upgrade-card {
    padding: 30px 20px;
  }
  
  .tool-card {
    padding: 25px;
  }
}