.apply-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, #0d0d18 0%, #0a0a0f 100%);
  border-bottom: 1px solid rgba(200,164,92,0.15);
}
.apply-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin: 16px 0 12px;
}
.apply-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.8;
}

.plans-section {
  padding: 80px 0;
  background: #0a0a0f;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

.plan-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.25s;
}
.plan-card:hover {
  border-color: rgba(255,255,255,0.18);
}
.plan-card-featured {
  border-color: rgba(200,164,92,0.4);
  background: rgba(200,164,92,0.05);
}
.plan-card-featured:hover {
  border-color: rgba(200,164,92,0.6);
}
.plan-badge-recommended {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #c8a45c, #f0d080);
  color: #1a1208;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.plan-tier {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.plan-tier.free {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
}
.plan-tier.standard {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.plan-tier.premium {
  background: linear-gradient(135deg, #c8a45c, #f0d080);
  color: #1a1208;
}

.plan-price {
  margin-bottom: 8px;
}
.plan-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.plan-period {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-left: 4px;
}
.plan-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  line-height: 1.6;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  font-size: 0.83rem;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.plan-features li.yes {
  color: rgba(255,255,255,0.8);
}
.plan-features li.yes::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #6ee7b7;
  font-weight: 700;
}
.plan-features li.no {
  color: rgba(255,255,255,0.25);
}
.plan-features li.no::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.2);
}

.plan-btn {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
}
.plan-btn-free {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
}
.plan-btn-free:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.plan-btn-standard {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}
.plan-btn-standard:hover {
  background: rgba(255,255,255,0.18);
}
.plan-btn-premium {
  background: linear-gradient(135deg, #c8a45c, #f0d080);
  color: #1a1208;
  border: none;
}
.plan-btn-premium:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.performance-option {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding: 28px 32px;
  background: rgba(139,92,246,0.06);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 12px;
}
@media (max-width: 600px) {
  .performance-option { flex-direction: column; text-align: center; }
}
.perf-icon {
  font-size: 1.8rem;
  color: #c4b5fd;
  font-weight: 300;
  flex-shrink: 0;
}
.perf-body { flex: 1; }
.perf-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.perf-body p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 8px;
}
.perf-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: #c4b5fd;
}
.perf-btn {
  padding: 10px 20px;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.35);
  border-radius: 8px;
  color: #c4b5fd;
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s;
  flex-shrink: 0;
}
.perf-btn:hover { background: rgba(139,92,246,0.25); }

.apply-form-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.selected-plan-display {
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  text-align: center;
}
.selected-plan-display.active { color: #fff; }
.selected-plan-display.plan-free { border-color: rgba(255,255,255,0.2); }
.selected-plan-display.plan-standard {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
}
.selected-plan-display.plan-premium {
  border-color: rgba(200,164,92,0.4);
  background: rgba(200,164,92,0.06);
  color: #e6c97a;
}
.selected-plan-display.plan-performance {
  border-color: rgba(139,92,246,0.35);
  background: rgba(139,92,246,0.06);
  color: #c4b5fd;
}

.apply-form { display: flex; flex-direction: column; gap: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.required {
  font-size: 0.7rem;
  color: #f87171;
  margin-left: 6px;
  background: rgba(248,113,113,0.12);
  padding: 1px 6px;
  border-radius: 3px;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  padding: 11px 14px;
  font-size: 0.88rem;
  font-family: inherit;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c8a45c' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-field select option { background: #1a1a2e; color: #fff; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(200,164,92,0.5);
}
.form-field textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

.apply-submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #c8a45c, #f0d080);
  color: #1a1208;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
}
.apply-submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.apply-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  line-height: 1.7;
  margin-top: 4px;
}
