/* Email Plugin — Landing page styles */

.gp-hero {
  text-align: center;
  margin-bottom: 24px;
}

.gp-hero h1 {
  font-size: 32px;
  margin-bottom: 12px;
}

.gp-hero p {
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}

.gp-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.gp-intro p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gp-text-muted);
}

/* Sections */
.gp-section {
  margin-bottom: 40px;
}

.gp-section h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gp-text);
}

/* Features grid */
.gp-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.gp-feature {
  background: var(--gp-card-bg);
  border: 1px solid var(--gp-border);
  border-radius: 12px;
  padding: 24px;
}

.gp-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--gp-primary-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--gp-primary);
  font-size: 18px;
}

.gp-feature h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gp-text);
}

.gp-feature p {
  font-size: 14px;
  margin: 0 0 6px;
  color: var(--gp-text-muted);
}

.gp-feature-detail {
  font-size: 13px !important;
  color: var(--gp-text-muted) !important;
}

.gp-feature-list {
  font-size: 14px;
  color: var(--gp-text-muted);
  padding-left: 18px;
  margin: 6px 0;
}

.gp-feature-list li {
  margin-bottom: 2px;
}

/* Built for teams */
.gp-teams-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gp-team-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--gp-card-bg);
  border: 1px solid var(--gp-border);
  border-radius: 10px;
  padding: 16px;
}

.gp-team-item i {
  color: var(--gp-primary);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.gp-team-item p {
  font-size: 14px;
  color: var(--gp-text-muted);
  margin: 0;
}

/* Platforms */
.gp-platforms {
  text-align: center;
  padding: 32px;
  background: var(--gp-card-bg);
  border: 1px solid var(--gp-border);
  border-radius: 12px;
  margin-bottom: 40px;
}

.gp-platforms-subtitle {
  font-size: 14px;
  color: var(--gp-text-muted);
  margin-bottom: 4px;
}

.gp-platforms-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--gp-text);
}

.gp-platforms-note {
  font-size: 13px;
  color: var(--gp-text-muted);
  margin-top: 8px;
}

/* Getting started */
.gp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gp-step {
  text-align: center;
  padding: 20px 12px;
  background: var(--gp-card-bg);
  border: 1px solid var(--gp-border);
  border-radius: 10px;
}

.gp-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gp-primary);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

.gp-step p {
  font-size: 13px;
  color: var(--gp-text-muted);
  margin: 0;
}

/* Contact section */
.gp-contact-section p {
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .gp-features { grid-template-columns: 1fr; }
  .gp-teams-grid { grid-template-columns: 1fr; }
  .gp-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
  .gp-steps { grid-template-columns: 1fr; }
}
