/* AI Writing Tools for Students - Landing Page */

.ai-writing-tools-section {
  padding: 130px 0 80px;
  background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
  min-height: 80vh;
  position: relative;
}

.writing-tools-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero Content */
.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.main-heading {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #231f20;
  font-family: 'CircularStd', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.gradient-text {
  background: linear-gradient(135deg, rgb(17, 123, 212) 0%, rgb(45, 150, 238) 50%, rgb(17, 118, 202) 100%) text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.subheadline {
  font-size: 18px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #475569;
  font-size: 15px;
  font-weight: 500;
}

.trust-item svg {
  flex-shrink: 0;
}

/* Tools Grid */
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
}

.tool-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.tool-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(45, 150, 238, 0.15);
  border-color: #2D96EE;
  background: #f8fcff;
}

.tool-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.tool-icon svg {
  width: 16px;
  height: 16px;
}

.tool-card:hover .tool-icon {
  transform: scale(1.1);
}

/* Tool Icon Colors */
.tool-icon.green {
  background: #dcfce7;
  color: #16a34a;
}

.tool-icon.purple {
  background: #f3e8ff;
  color: #9333ea;
}

.tool-icon.red {
  background: #fee2e2;
  color: #dc2626;
}

.tool-icon.purple-alt {
  background: #ede9fe;
  color: #7c3aed;
}

.tool-icon.orange {
  background: #ffedd5;
  color: #ea580c;
}

.tool-icon.blue {
  background: #dbeafe;
  color: #2563eb;
}

.tool-icon.teal {
  background: #ccfbf1;
  color: #0d9488;
}

.tool-icon.purple-light {
  background: #fae8ff;
  color: #c026d3;
}

.tool-icon.purple-dark {
  background: #e0e7ff;
  color: #6366f1;
}

.tool-icon.cyan {
  background: #cffafe;
  color: #0891b2;
}

.tool-icon.purple-medium {
  background: #f5f3ff;
  color: #8b5cf6;
}

.tool-name {
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  font-family: 'CircularStd', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.tool-card:hover .tool-name {
  color: #1e293b;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .main-heading {
    font-size: 48px;
  }

  .tools-grid {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .ai-writing-tools-section {
    padding: 110px 0 60px;
  }

  .writing-tools-wrapper{
    padding: 0;
  }

  .main-heading {
    font-size: 36px;
  }

  .subheadline {
    font-size: 16px;
  }

  .trust-indicators {
    gap: 24px;
    margin-bottom: 40px;
  }

  .trust-item {
    font-size: 14px;
    gap: 8px;
  }

  .trust-item svg {
    width: 18px;
    height: 18px;
  }

  .tools-grid {
    gap: 8px;
    padding: 30px 24px;
  }

  .tool-card {
    padding: 10px 20px;
    gap: 8px;
  }

  .tool-icon {
    width: 20px;
    height: 20px;
  }

  .tool-icon svg {
    width: 14px;
    height: 14px;
  }

  .tool-name {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .main-heading {
    font-size: 28px;
  }

  .subheadline {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }

  .tools-grid {
    gap: 8px;
    max-width: 100%;
    padding: 24px 16px;
    border-radius: 16px;
  }

  .tool-card {
    padding: 8px 16px;
    font-size: 12px;
  }

  .tool-icon {
    width: 18px;
    height: 18px;
  }

  .tool-icon svg {
    width: 12px;
    height: 12px;
  }
}
